Uses of Interface
org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler
Package
Description
-
Uses of HistoryEventHandler in org.camunda.bpm.engine.impl.cfg
Modifier and TypeFieldDescriptionprotected HistoryEventHandler
ProcessEngineConfigurationImpl.historyEventHandler
As an instance ofCompositeHistoryEventHandler
it contains all the provided history event handlers that process history events.Modifier and TypeFieldDescriptionprotected List<HistoryEventHandler>
ProcessEngineConfigurationImpl.customHistoryEventHandlers
Allows users to add additionalHistoryEventHandler
instances to process history events.Modifier and TypeMethodDescriptionProcessEngineConfigurationImpl.setHistoryEventHandler
(HistoryEventHandler historyEventHandler) Modifier and TypeMethodDescriptionvoid
ProcessEngineConfigurationImpl.setCustomHistoryEventHandlers
(List<HistoryEventHandler> customHistoryEventHandlers) -
Uses of HistoryEventHandler in org.camunda.bpm.engine.impl.history.handler
Modifier and TypeClassDescriptionclass
ACompositeHistoryEventHandler
implementation which additionally adds to the list ofHistoryEventHandler
theDbHistoryEventHandler
which persists events to a database.class
AHistoryEventHandler
implementation which delegates to a list ofHistoryEventHandler
.class
History event handler that writes history events to the process engine database using the DbEntityManager.Modifier and TypeFieldDescriptionprotected final List<HistoryEventHandler>
CompositeHistoryEventHandler.historyEventHandlers
The list ofHistoryEventHandler
which consume the event.Modifier and TypeMethodDescriptionvoid
CompositeHistoryEventHandler.add
(HistoryEventHandler historyEventHandler) Adds theHistoryEventHandler
to the list ofHistoryEventHandler
that consume the event.ModifierConstructorDescriptionCompositeDbHistoryEventHandler
(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.ModifierConstructorDescriptionCompositeDbHistoryEventHandler
(List<HistoryEventHandler> historyEventHandlers) Constructor that takes a list ofHistoryEventHandler
that consume the event and addsDbHistoryEventHandler
to the list ofHistoryEventHandler
.CompositeHistoryEventHandler
(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
Modifier and TypeFieldDescriptionprotected HistoryEventHandler
DefaultHistoryConfiguration.historyEventHandler
-
Uses of HistoryEventHandler in org.camunda.bpm.spring.boot.starter.event
Modifier and TypeClassDescriptionclass
Event handler publishing history events as Spring Events.