jBPM :: Distribution 6.2.0-SNAPSHOT

Uses of Interface
org.kie.api.runtime.manager.RuntimeManager

Packages that use RuntimeManager
org.jbpm.executor.impl.wih   
org.jbpm.kie.services.impl   
org.jbpm.process.core.timer.impl   
org.jbpm.runtime.manager.impl   
org.jbpm.runtime.manager.impl.tx   
org.jbpm.services.api   
org.jbpm.services.api.model   
org.jbpm.services.cdi.impl.manager   
org.jbpm.services.ejb.impl   
org.jbpm.services.task.wih   
org.jbpm.test   
org.kie.api.runtime.manager   
 

Uses of RuntimeManager in org.jbpm.executor.impl.wih
 

Methods in org.jbpm.executor.impl.wih that return RuntimeManager
protected  RuntimeManager AsyncWorkItemHandlerCmdCallback.getRuntimeManager(org.kie.internal.executor.api.CommandContext ctx)
           
 

Uses of RuntimeManager in org.jbpm.kie.services.impl
 

Methods in org.jbpm.kie.services.impl that return RuntimeManager
 RuntimeManager DeployedUnitImpl.getRuntimeManager()
           
 RuntimeManager AbstractDeploymentService.getRuntimeManager(String deploymentUnitId)
           
protected  RuntimeManager UserTaskServiceImpl.getRuntimeManager(String deploymentId, Command<?> command)
           
protected  RuntimeManager UserTaskServiceImpl.getRuntimeManager(UserTaskInstanceDesc task)
           
 

Methods in org.jbpm.kie.services.impl with parameters of type RuntimeManager
protected  void UserTaskServiceImpl.disposeRuntimeEngine(RuntimeManager manager, RuntimeEngine engine)
           
protected  void ProcessServiceImpl.disposeRuntimeEngine(RuntimeManager manager, RuntimeEngine engine)
           
 void DeployedUnitImpl.setRuntimeManager(RuntimeManager manager)
           
 

Uses of RuntimeManager in org.jbpm.process.core.timer.impl
 

Fields in org.jbpm.process.core.timer.impl declared as RuntimeManager
protected  RuntimeManager GlobalTimerService.manager
           
 

Constructors in org.jbpm.process.core.timer.impl with parameters of type RuntimeManager
GlobalTimerService.DisposableCommandService(org.drools.core.command.CommandService delegate, RuntimeManager manager, RuntimeEngine runtime, boolean retry)
           
GlobalTimerService(RuntimeManager manager, GlobalSchedulerService schedulerService)
           
 

Uses of RuntimeManager in org.jbpm.runtime.manager.impl
 

Classes in org.jbpm.runtime.manager.impl that implement RuntimeManager
 class AbstractRuntimeManager
          Common implementation that all RuntimeManager implementations should inherit from.
 class PerProcessInstanceRuntimeManager
          A RuntimeManager implementation that is backed by the "Per Process Instance" strategy.
 class PerRequestRuntimeManager
          A RuntimeManager implementation that is backed by the "Per Request" strategy.
 class SingletonRuntimeManager
          This RuntimeManager is backed by a "Singleton" strategy, meaning that only one RuntimeEngine instance will exist for for the given RuntimeManager instance.
 

Methods in org.jbpm.runtime.manager.impl that return RuntimeManager
 RuntimeManager RuntimeEngineImpl.getManager()
           
 RuntimeManager RuntimeManagerFactoryImpl.newPerProcessInstanceRuntimeManager(RuntimeEnvironment environment)
           
 RuntimeManager RuntimeManagerFactoryImpl.newPerProcessInstanceRuntimeManager(RuntimeEnvironment environment, String identifier)
           
 RuntimeManager RuntimeManagerFactoryImpl.newPerRequestRuntimeManager(RuntimeEnvironment environment)
           
 RuntimeManager RuntimeManagerFactoryImpl.newPerRequestRuntimeManager(RuntimeEnvironment environment, String identifier)
           
 RuntimeManager RuntimeManagerFactoryImpl.newSingletonRuntimeManager(RuntimeEnvironment environment)
           
 RuntimeManager RuntimeManagerFactoryImpl.newSingletonRuntimeManager(RuntimeEnvironment environment, String identifier)
           
 

Methods in org.jbpm.runtime.manager.impl with parameters of type RuntimeManager
protected  void RuntimeManagerFactoryImpl.initTimerService(RuntimeEnvironment environment, RuntimeManager manager)
           
 void RuntimeEngineImpl.setManager(RuntimeManager manager)
           
 

Uses of RuntimeManager in org.jbpm.runtime.manager.impl.tx
 

Constructors in org.jbpm.runtime.manager.impl.tx with parameters of type RuntimeManager
DisposeSessionTransactionSynchronization(RuntimeManager manager, RuntimeEngine runtime)
           
TransactionAwareSchedulerServiceInterceptor(RuntimeEnvironment environment, RuntimeManager manager, GlobalSchedulerService schedulerService)
           
 

Uses of RuntimeManager in org.jbpm.services.api
 

Methods in org.jbpm.services.api that return RuntimeManager
 RuntimeManager DeploymentService.getRuntimeManager(String deploymentUnitId)
          Returns RuntimeManager instance dedicated to deployment unit identified by given id
 

Uses of RuntimeManager in org.jbpm.services.api.model
 

Methods in org.jbpm.services.api.model that return RuntimeManager
 RuntimeManager DeployedUnit.getRuntimeManager()
           
 

Uses of RuntimeManager in org.jbpm.services.cdi.impl.manager
 

Methods in org.jbpm.services.cdi.impl.manager that return RuntimeManager
 RuntimeManager RuntimeManagerProducer.newPerProcessInstanceRuntimeManager()
           
 RuntimeManager RuntimeManagerProducer.newPerRequestRuntimeManager()
           
 RuntimeManager RuntimeManagerProducer.newSingletonRuntimeManager()
           
 

Uses of RuntimeManager in org.jbpm.services.ejb.impl
 

Methods in org.jbpm.services.ejb.impl with parameters of type RuntimeManager
protected  void UserTaskServiceEJBImpl.disposeRuntimeEngine(RuntimeManager manager, RuntimeEngine engine)
           
protected  void ProcessServiceEJBImpl.disposeRuntimeEngine(RuntimeManager manager, RuntimeEngine engine)
           
 

Uses of RuntimeManager in org.jbpm.services.task.wih
 

Methods in org.jbpm.services.task.wih that return RuntimeManager
 RuntimeManager ExternalTaskEventListener.getManager(Task task)
           
 RuntimeManager LocalHTWorkItemHandler.getRuntimeManager()
           
 

Methods in org.jbpm.services.task.wih with parameters of type RuntimeManager
 void LocalHTWorkItemHandler.setRuntimeManager(RuntimeManager runtimeManager)
           
 

Uses of RuntimeManager in org.jbpm.test
 

Fields in org.jbpm.test declared as RuntimeManager
protected  RuntimeManager JbpmJUnitBaseTestCase.manager
           
 

Methods in org.jbpm.test that return RuntimeManager
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(JbpmJUnitBaseTestCase.Strategy strategy, Map<String,ResourceType> resources)
          Creates default configuration of RuntimeManager with given strategy and all resources being added to knowledge base.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(JbpmJUnitBaseTestCase.Strategy strategy, Map<String,ResourceType> resources, RuntimeEnvironment environment, String identifier)
          The lowest level of creation of RuntimeManager that expects to get RuntimeEnvironment to be given as argument.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(JbpmJUnitBaseTestCase.Strategy strategy, Map<String,ResourceType> resources, String identifier)
          Creates default configuration of RuntimeManager with given strategy and all resources being added to knowledge base.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(JbpmJUnitBaseTestCase.Strategy strategy, String identifier, String... process)
          Creates default configuration of RuntimeManager with given strategy and all processes being added to knowledge base.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(Map<String,ResourceType> resources)
          Creates default configuration of RuntimeManager with SINGLETON strategy and all resources being added to knowledge base.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(Map<String,ResourceType> resources, String identifier)
          Creates default configuration of RuntimeManager with SINGLETON strategy and all resources being added to knowledge base.
protected  RuntimeManager JbpmJUnitBaseTestCase.createRuntimeManager(String... process)
          Creates default configuration of RuntimeManager with SINGLETON strategy and all processes being added to knowledge base.
 

Uses of RuntimeManager in org.kie.api.runtime.manager
 

Methods in org.kie.api.runtime.manager that return RuntimeManager
 RuntimeManager RuntimeManagerFactory.newPerProcessInstanceRuntimeManager(RuntimeEnvironment environment)
          Produces new instance of per process instance RuntimeManager with default identifier.
 RuntimeManager RuntimeManagerFactory.newPerProcessInstanceRuntimeManager(RuntimeEnvironment environment, String identifier)
          Produces new instance of per process instance RuntimeManager with custom identifier.
 RuntimeManager RuntimeManagerFactory.newPerRequestRuntimeManager(RuntimeEnvironment environment)
          Produces new instance of per request RuntimeManager with default identifier.
 RuntimeManager RuntimeManagerFactory.newPerRequestRuntimeManager(RuntimeEnvironment environment, String identifier)
          Produces new instance of per request RuntimeManager with custom identifier.
 RuntimeManager RuntimeManagerFactory.newSingletonRuntimeManager(RuntimeEnvironment environment)
          Produces new instance of singleton RuntimeManager with default identifier.
 RuntimeManager RuntimeManagerFactory.newSingletonRuntimeManager(RuntimeEnvironment environment, String identifier)
          Produces new instance of singleton RuntimeManager with custom identifier.
 


jBPM :: Distribution 6.2.0-SNAPSHOT

Copyright © 2001-2015 JBoss by Red Hat. All Rights Reserved.