Uses of Interface
org.activiti.engine.impl.asyncexecutor.AsyncExecutor
-
Packages that use AsyncExecutor Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.impl.asyncexecutor org.activiti.engine.impl.asyncexecutor.multitenant org.activiti.engine.impl.cmd org.activiti.engine.impl.jobexecutor org.activiti.engine.impl.persistence -
-
Uses of AsyncExecutor in org.activiti.engine
Fields in org.activiti.engine declared as AsyncExecutor Modifier and Type Field Description protected AsyncExecutorProcessEngineConfiguration. asyncExecutorMethods in org.activiti.engine that return AsyncExecutor Modifier and Type Method Description AsyncExecutorProcessEngineConfiguration. getAsyncExecutor()Methods in org.activiti.engine with parameters of type AsyncExecutor Modifier and Type Method Description ProcessEngineConfigurationProcessEngineConfiguration. setAsyncExecutor(AsyncExecutor asyncExecutor) -
Uses of AsyncExecutor in org.activiti.engine.impl
Fields in org.activiti.engine.impl declared as AsyncExecutor Modifier and Type Field Description protected AsyncExecutorProcessEngineImpl. asyncExecutor -
Uses of AsyncExecutor in org.activiti.engine.impl.asyncexecutor
Classes in org.activiti.engine.impl.asyncexecutor that implement AsyncExecutor Modifier and Type Class Description classDefaultAsyncJobExecutorclassManagedAsyncJobExecutorSimple JSR-236 async job executor to allocate threads throughManagedThreadFactory.Fields in org.activiti.engine.impl.asyncexecutor declared as AsyncExecutor Modifier and Type Field Description protected AsyncExecutorAcquireAsyncJobsDueRunnable. asyncExecutorprotected AsyncExecutorAcquireTimerJobsRunnable. asyncExecutorprotected AsyncExecutorResetExpiredJobsRunnable. asyncExecutorMethods in org.activiti.engine.impl.asyncexecutor that return AsyncExecutor Modifier and Type Method Description protected AsyncExecutorDefaultJobManager. getAsyncExecutor()Constructors in org.activiti.engine.impl.asyncexecutor with parameters of type AsyncExecutor Constructor Description AcquireAsyncJobsDueRunnable(AsyncExecutor asyncExecutor)AcquireTimerJobsRunnable(AsyncExecutor asyncExecutor, JobManager jobManager)ResetExpiredJobsRunnable(AsyncExecutor asyncExecutor) -
Uses of AsyncExecutor in org.activiti.engine.impl.asyncexecutor.multitenant
Subinterfaces of AsyncExecutor in org.activiti.engine.impl.asyncexecutor.multitenant Modifier and Type Interface Description interfaceTenantAwareAsyncExecutorInterface forAsyncExecutorimplementations used in conjucntion with theMultiSchemaMultiTenantProcessEngineConfiguration.Classes in org.activiti.engine.impl.asyncexecutor.multitenant that implement AsyncExecutor Modifier and Type Class Description classExecutorPerTenantAsyncExecutorAnAsyncExecutorthat has oneAsyncExecutorper tenant.classSharedExecutorServiceAsyncExecutorMulti tenantAsyncExecutor.Fields in org.activiti.engine.impl.asyncexecutor.multitenant with type parameters of type AsyncExecutor Modifier and Type Field Description protected java.util.Map<java.lang.String,AsyncExecutor>ExecutorPerTenantAsyncExecutor. tenantExecutorsMethods in org.activiti.engine.impl.asyncexecutor.multitenant that return AsyncExecutor Modifier and Type Method Description AsyncExecutorTenantAwareAsyncExecutorFactory. createAsyncExecutor(java.lang.String tenantId)Allows to create anAsyncExecutorspecifically for a tenant.protected AsyncExecutorExecutorPerTenantAsyncExecutor. determineAsyncExecutor()Constructors in org.activiti.engine.impl.asyncexecutor.multitenant with parameters of type AsyncExecutor Constructor Description TenantAwareAcquireAsyncJobsDueRunnable(AsyncExecutor asyncExecutor, TenantInfoHolder tenantInfoHolder, java.lang.String tenantId)TenantAwareAcquireTimerJobsRunnable(AsyncExecutor asyncExecutor, TenantInfoHolder tenantInfoHolder, java.lang.String tenantId)TenantAwareResetExpiredJobsRunnable(AsyncExecutor asyncExecutor, TenantInfoHolder tenantInfoHolder, java.lang.String tenantId) -
Uses of AsyncExecutor in org.activiti.engine.impl.cmd
Constructors in org.activiti.engine.impl.cmd with parameters of type AsyncExecutor Constructor Description AcquireJobsCmd(AsyncExecutor asyncExecutor)AcquireTimerJobsCmd(AsyncExecutor asyncExecutor) -
Uses of AsyncExecutor in org.activiti.engine.impl.jobexecutor
Fields in org.activiti.engine.impl.jobexecutor declared as AsyncExecutor Modifier and Type Field Description protected AsyncExecutorAsyncJobAddedNotification. asyncExecutorConstructors in org.activiti.engine.impl.jobexecutor with parameters of type AsyncExecutor Constructor Description AsyncJobAddedNotification(JobEntity job, AsyncExecutor asyncExecutor) -
Uses of AsyncExecutor in org.activiti.engine.impl.persistence
Methods in org.activiti.engine.impl.persistence that return AsyncExecutor Modifier and Type Method Description protected AsyncExecutorAbstractManager. getAsyncExecutor()
-