Uses of Interface
org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler
-
-
Uses of HistoryEventHandler in org.camunda.bpm.engine.impl.cfg
Fields in org.camunda.bpm.engine.impl.cfg declared as HistoryEventHandler Modifier and Type Field Description protected HistoryEventHandler
ProcessEngineConfigurationImpl. historyEventHandler
As an instance ofCompositeHistoryEventHandler
it contains all the provided history event handlers that process history events.Fields in org.camunda.bpm.engine.impl.cfg with type parameters of type HistoryEventHandler Modifier and Type Field Description protected java.util.List<HistoryEventHandler>
ProcessEngineConfigurationImpl. customHistoryEventHandlers
Allows users to add additionalHistoryEventHandler
instances to process history events.Methods in org.camunda.bpm.engine.impl.cfg that return HistoryEventHandler Modifier and Type Method Description HistoryEventHandler
ProcessEngineConfigurationImpl. getHistoryEventHandler()
Methods in org.camunda.bpm.engine.impl.cfg that return types with arguments of type HistoryEventHandler Modifier and Type Method Description java.util.List<HistoryEventHandler>
ProcessEngineConfigurationImpl. getCustomHistoryEventHandlers()
Methods in org.camunda.bpm.engine.impl.cfg with parameters of type HistoryEventHandler Modifier and Type Method Description ProcessEngineConfigurationImpl
ProcessEngineConfigurationImpl. setHistoryEventHandler(HistoryEventHandler historyEventHandler)
Method parameters in org.camunda.bpm.engine.impl.cfg with type arguments of type HistoryEventHandler Modifier and Type Method Description void
ProcessEngineConfigurationImpl. setCustomHistoryEventHandlers(java.util.List<HistoryEventHandler> customHistoryEventHandlers)
-
Uses of HistoryEventHandler in org.camunda.bpm.engine.impl.history.handler
Classes in org.camunda.bpm.engine.impl.history.handler that implement HistoryEventHandler Modifier and Type Class Description class
CompositeDbHistoryEventHandler
ACompositeHistoryEventHandler
implementation which additionally adds to the list ofHistoryEventHandler
theDbHistoryEventHandler
which persists events to a database.class
CompositeHistoryEventHandler
AHistoryEventHandler
implementation which delegates to a list ofHistoryEventHandler
.class
DbHistoryEventHandler
History event handler that writes history events to the process engine database using the DbEntityManager.Fields in org.camunda.bpm.engine.impl.history.handler with type parameters of type HistoryEventHandler Modifier and Type Field Description protected java.util.List<HistoryEventHandler>
CompositeHistoryEventHandler. historyEventHandlers
The list ofHistoryEventHandler
which consume the event.Methods in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEventHandler Modifier and Type Method Description void
CompositeHistoryEventHandler. add(HistoryEventHandler historyEventHandler)
Adds theHistoryEventHandler
to the list ofHistoryEventHandler
that consume the event.Constructors in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEventHandler Constructor Description CompositeDbHistoryEventHandler(HistoryEventHandler... historyEventHandlers)
Constructor that takes a varargs parameterHistoryEventHandler
that consume the event and addsDbHistoryEventHandler
to the list ofHistoryEventHandler
.CompositeHistoryEventHandler(HistoryEventHandler... historyEventHandlers)
Constructor that takes a varargs parameterHistoryEventHandler
that consume the event.Constructor parameters in org.camunda.bpm.engine.impl.history.handler with type arguments of type HistoryEventHandler Constructor Description CompositeDbHistoryEventHandler(java.util.List<HistoryEventHandler> historyEventHandlers)
Constructor that takes a list ofHistoryEventHandler
that consume the event and addsDbHistoryEventHandler
to the list ofHistoryEventHandler
.CompositeHistoryEventHandler(java.util.List<HistoryEventHandler> historyEventHandlers)
Constructor that takes a list ofHistoryEventHandler
that consume the event. -
Uses of HistoryEventHandler in org.camunda.bpm.spring.boot.starter.configuration.impl
Fields in org.camunda.bpm.spring.boot.starter.configuration.impl declared as HistoryEventHandler Modifier and Type Field Description protected HistoryEventHandler
DefaultHistoryConfiguration. historyEventHandler
-
Uses of HistoryEventHandler in org.camunda.bpm.spring.boot.starter.event
Classes in org.camunda.bpm.spring.boot.starter.event that implement HistoryEventHandler Modifier and Type Class Description class
PublishHistoryEventHandler
Event handler publishing history events as Spring Events.
-