Uses of Interface
org.camunda.bpm.engine.runtime.MessageCorrelationAsyncBuilder
-
Packages that use MessageCorrelationAsyncBuilder Package Description org.camunda.bpm.engine Public API of the Camunda Platform 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
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.runtime Classes related to theRuntimeService. -
-
Uses of MessageCorrelationAsyncBuilder in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return MessageCorrelationAsyncBuilder Modifier and Type Method Description MessageCorrelationAsyncBuilderRuntimeService. createMessageCorrelationAsync(String messageName)Define a complex asynchronous message correlation using a fluent builder. -
Uses of MessageCorrelationAsyncBuilder in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement MessageCorrelationAsyncBuilder Modifier and Type Class Description classMessageCorrelationAsyncBuilderImplMethods in org.camunda.bpm.engine.impl that return MessageCorrelationAsyncBuilder Modifier and Type Method Description MessageCorrelationAsyncBuilderRuntimeServiceImpl. createMessageCorrelationAsync(String messageName)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. historicProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. processInstanceIds(List<String> ids)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. setVariable(String variableName, Object variableValue)MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilderImpl. setVariables(Map<String,Object> variables) -
Uses of MessageCorrelationAsyncBuilder in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return MessageCorrelationAsyncBuilder Modifier and Type Method Description MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. historicProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery)Correlate the message such that the process instances found by the given query are selected.MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. processInstanceIds(List<String> ids)Correlate the message such that the process instances with the given ids are selected.MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. processInstanceQuery(ProcessInstanceQuery processInstanceQuery)Correlate the message such that the process instances found by the given query are selected.MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. setVariable(String variableName, Object variableValue)Pass a variable to the execution waiting on the message.MessageCorrelationAsyncBuilderMessageCorrelationAsyncBuilder. setVariables(Map<String,Object> variables)Pass a map of variables to the execution waiting on the message.
-