public class SeExecutorService extends Object implements ExecutorService
Modifier and Type | Field and Description |
---|---|
protected ThreadPoolExecutor |
threadPoolExecutor |
Constructor and Description |
---|
SeExecutorService(ThreadPoolExecutor threadPoolExecutor) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
executeLongRunning(Runnable runnable) |
protected boolean |
executeShortRunning(Runnable runnable) |
Runnable |
getExecuteJobsRunnable(List<String> jobIds,
ProcessEngineImpl processEngine)
Returns a runnable to be used for executing Jobs.
|
boolean |
schedule(Runnable runnable,
boolean isLongRunning)
Passes a
Runnable to the runtime container for execution. |
protected ThreadPoolExecutor threadPoolExecutor
public SeExecutorService(ThreadPoolExecutor threadPoolExecutor)
public boolean schedule(Runnable runnable, boolean isLongRunning)
ExecutorService
Passes a Runnable
to the runtime container for execution. Some runtime
containers (like a Java EE container offer container provided
infrastructure for executing background work (such as a JCA WorkManager).
This method allows the process engine to take advantage of container
infrastructure for doing background work.
schedule
in interface ExecutorService
runnable
- the Runnable
to be executed.isLongRunning
- indicates whether the runnable is a daemon.protected boolean executeLongRunning(Runnable runnable)
protected boolean executeShortRunning(Runnable runnable)
public Runnable getExecuteJobsRunnable(List<String> jobIds, ProcessEngineImpl processEngine)
ExecutorService
Returns a runnable to be used for executing Jobs.
getExecuteJobsRunnable
in interface ExecutorService
Copyright © 2015. All rights reserved.