Interface HandoffExecutorResolver

All Known Implementing Classes:
HandoffExecutorResolver.AbstractThreadFactoryResolver, HandoffExecutorResolver.SimpleResolver

public interface HandoffExecutorResolver
Resolves the service name of the executor service a thread pool service should use if it cannot itself accept a task. Optionally provides an executor service for the thread pool to use in case the thread pool does not have a specifically configured handoff executor. The absence of a specifically configured thread pool would be typical.
Author:
Brian Stansberry (c) 2011 Red Hat Inc.
  • Method Details

    • resolveHandoffExecutor

      org.jboss.msc.service.ServiceName resolveHandoffExecutor(String handoffExecutorName, String threadPoolName, org.jboss.msc.service.ServiceName threadPoolServiceName, org.jboss.msc.service.ServiceTarget serviceTarget)
      Resolves the service name of the handoff executor a thread pool service should use, optionally providing a default executor in case the thread pool does not have a specifically configured handoff executor.
      Parameters:
      handoffExecutorName - the simple name of the handoff executor. Typically a reference value from the thread pool resource's configuration. Can be null in which case a default handoff executor may be returned.
      threadPoolName - the name of the thread pool
      threadPoolServiceName - the full name of the Service that provides the thread pool
      serviceTarget - service target that is installing the thread pool service; can be used to install a ThreadFactoryService
      Returns:
      the ServiceName of the executor service the thread pool should use. May be {@link null}
    • releaseHandoffExecutor

      void releaseHandoffExecutor(String handoffExecutorName, String threadPoolName, org.jboss.msc.service.ServiceName threadPoolServiceName, OperationContext context)
      Releases the handoff executor, doing any necessary cleanup, such as removing a default executor that was installed by resolveHandoffExecutor(String, String, org.jboss.msc.service.ServiceName, org.jboss.msc.service.ServiceTarget).
      Parameters:
      handoffExecutorName - the simple name of the thread factory. Typically a reference value from the thread pool resource's configuration. Can be null in which case a default thread factory should be released.
      threadPoolName - the name of the thread pool
      threadPoolServiceName - the full name of the Service that provides the thread pool
      context - the context of the current operation; can be used to perform any necessary service removals