Uses of Interface
org.operaton.bpm.engine.runtime.MessageCorrelationAsyncBuilder
Packages that use MessageCorrelationAsyncBuilder
Package
Description
Public API of the Operaton engine.
Typical usage of the API starts by the creation of a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService.-
Uses of MessageCorrelationAsyncBuilder in org.operaton.bpm.engine
Methods in org.operaton.bpm.engine that return MessageCorrelationAsyncBuilderModifier and TypeMethodDescriptionRuntimeService.createMessageCorrelationAsync(String messageName) Define a complex asynchronous message correlation using a fluent builder. -
Uses of MessageCorrelationAsyncBuilder in org.operaton.bpm.engine.impl
Classes in org.operaton.bpm.engine.impl that implement MessageCorrelationAsyncBuilderMethods in org.operaton.bpm.engine.impl that return MessageCorrelationAsyncBuilderModifier and TypeMethodDescriptionRuntimeServiceImpl.createMessageCorrelationAsync(String messageName) MessageCorrelationAsyncBuilderImpl.historicProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery) MessageCorrelationAsyncBuilderImpl.processInstanceIds(List<String> ids) MessageCorrelationAsyncBuilderImpl.processInstanceQuery(ProcessInstanceQuery processInstanceQuery) MessageCorrelationAsyncBuilderImpl.setVariable(String variableName, Object variableValue) MessageCorrelationAsyncBuilderImpl.setVariables(Map<String, Object> variables) -
Uses of MessageCorrelationAsyncBuilder in org.operaton.bpm.engine.runtime
Methods in org.operaton.bpm.engine.runtime that return MessageCorrelationAsyncBuilderModifier and TypeMethodDescriptionMessageCorrelationAsyncBuilder.historicProcessInstanceQuery(HistoricProcessInstanceQuery historicProcessInstanceQuery) Correlate the message such that the process instances found by the given query are selected.MessageCorrelationAsyncBuilder.processInstanceIds(List<String> ids) Correlate the message such that the process instances with the given ids are selected.MessageCorrelationAsyncBuilder.processInstanceQuery(ProcessInstanceQuery processInstanceQuery) Correlate the message such that the process instances found by the given query are selected.MessageCorrelationAsyncBuilder.setVariable(String variableName, Object variableValue) Pass a variable to the execution waiting on the message.MessageCorrelationAsyncBuilder.setVariables(Map<String, Object> variables) Pass a map of variables to the execution waiting on the message.