Uses of Interface
io.automatiko.engine.api.runtime.process.ProcessInstance
-
Packages that use ProcessInstance Package Description io.automatiko.engine.api.event.process Events emitted while process instances are executing.io.automatiko.engine.api.runtime.process The process runtime classes. -
-
Uses of ProcessInstance in io.automatiko.engine.api.event.process
Methods in io.automatiko.engine.api.event.process that return ProcessInstance Modifier and Type Method Description ProcessInstanceProcessEvent. getProcessInstance()The ProcessInstance this event relates to. -
Uses of ProcessInstance in io.automatiko.engine.api.runtime.process
Subinterfaces of ProcessInstance in io.automatiko.engine.api.runtime.process Modifier and Type Interface Description interfaceWorkflowProcessInstanceA workflow process instance represents one specific instance of a workflow process that is currently executing.Methods in io.automatiko.engine.api.runtime.process that return ProcessInstance Modifier and Type Method Description ProcessInstanceProcessRuntime. createProcessInstance(String processId, Map<String,Object> parameters)Creates a new process instance (but does not yet start it).ProcessInstanceProcessContext. getProcessInstance()Returns the process instance that is currently being executed in this context.ProcessInstanceProcessRuntime. getProcessInstance(String processInstanceId)Returns the process instance with the given id.ProcessInstanceProcessRuntime. getProcessInstance(String processInstanceId, boolean readonly)Returns the process instance with the given id.ProcessInstanceWorkItem. getProcessInstance()The process instance that requested the execution of this work itemProcessInstanceProcessRuntime. startProcess(String processId)Start a new process instance.ProcessInstanceProcessRuntime. startProcess(String processId, Map<String,Object> parameters)Start a new process instance.ProcessInstanceProcessRuntime. startProcessInstance(String processInstanceId)Starts the given process instance (which was created by using createProcesInstance but not yet started).ProcessInstanceProcessRuntime. startProcessInstance(String processInstanceId, String trigger, Object triggerData)Starts the given process instance (which was created by using createProcesInstance but not yet started).Methods in io.automatiko.engine.api.runtime.process that return types with arguments of type ProcessInstance Modifier and Type Method Description Collection<ProcessInstance>ProcessRuntime. getProcessInstances()Returns a collection of currently active process instances.Methods in io.automatiko.engine.api.runtime.process with parameters of type ProcessInstance Modifier and Type Method Description voidWorkItem. setProcessInstance(ProcessInstance processInstance)
-