Example usage for javax.resource.spi.work Work interface-usage

List of usage examples for javax.resource.spi.work Work interface-usage

Introduction

In this page you can find the example usage for javax.resource.spi.work Work interface-usage.

Usage

From source file org.mule.retry.async.RetryWorker.java

/**
 * A {@link javax.resource.spi.work.Work} implementation used when executing a {@link RetryPolicyTemplate} in a separate
 * thread.
 */
public class RetryWorker implements Work {
    protected transient final Log logger = LogFactory.getLog(RetryWorker.class);

From source file org.mule.transport.http.HttpRequestDispatcher.java

/**
 * Manage a ServerSocket.
 * <p/>
 * Lookup the right MessageReceiver for each HttpRequest and dispatch the socket to the MessageReceiver for further processing.
 */
class HttpRequestDispatcher implements Work {

From source file org.mule.providers.ldap.LDAPQueueReceiver.java

class LDAPQueueReceiver implements javax.resource.spi.work.Work {

    /**
     * logger used by this class
     */
    private final Log logger = LogFactory.getLog(getClass());

From source file org.mule.transport.AbstractReceiverWorker.java

/**
 * A base Worker used by Transport {@link org.mule.api.transport.MessageReceiver} implementations.
 */
public abstract class AbstractReceiverWorker implements Work {
    protected List<Object> messages;
    protected InboundEndpoint endpoint;

From source file com.farmafene.aurius.mngt.impl.FileWorker.java

public class FileWorker implements Work {

    private static final Log logger = LogFactory.getLog(FileWorker.class);
    private File file;
    private CallStatus status;

From source file org.mule.context.notification.ServerNotificationManager.java

/**
 * A reworking of the event manager that allows efficient behaviour without global on/off
 * switches in the config.
 *
 * <p>The configuration and resulting policy are separate; the policy
 * is a summary of the configuration that contains information to decide whether a particular

From source file org.mule.transport.comm.CommMessageReceiver.java

/**
 * Created by IntelliJ IDEA.
 * User: Christopher Cheng
 * Date: Mar 1, 2009
 * Time: 4:16:42 PM
 * To change this template use File | Settings | File Templates.

From source file org.mule.work.WorkerContext.java

/**
 * <code>WorkerContext</code> TODO
 */
public class WorkerContext implements Work {

    /**

From source file com.farmafene.aurius.mngt.impl.DirectoryWorker.java

public class DirectoryWorker implements Work {

    private static final Log logger = LogFactory.getLog(DirectoryWorker.class);
    private BlockingQueue<CallStatus> queue;
    private WorkManager workManager;

From source file org.bytesoft.bytetcc.work.CleanupWork.java

public class CleanupWork
        implements Work, LocalResourceCleaner, CompensableEndpointAware, CompensableBeanFactoryAware {
    static final Logger logger = LoggerFactory.getLogger(CompensableWork.class);
    static final byte[] IDENTIFIER = "org.bytesoft.bytetcc.resource.cleanup".getBytes();

    static final long SECOND_MILLIS = 1000L;