workexecutor.java
来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 56 行
JAVA
56 行
/* * $Id: WorkExecutor.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. *//** * * Copyright 2004 The Apache Software Foundation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.mule.api.work;import org.mule.work.WorkerContext;import javax.resource.spi.work.WorkException;import edu.emory.mathcs.backport.java.util.concurrent.Executor;/** * <code>WorkExecutor</code> TODO */public interface WorkExecutor{ /** * This method must be implemented by sub-classes in order to provide the * relevant synchronization policy. It is called by the executeWork template * method. * * @param work Work to be executed. * @throws javax.resource.spi.work.WorkException Indicates that the work has * failed. * @throws InterruptedException Indicates that the thread in charge of the * execution of the specified work has been interrupted. */ void doExecute(WorkerContext work, Executor executor) throws WorkException, InterruptedException;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?