Uses of Interface
org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler
-
Packages that use HistoryEventHandler Package Description org.camunda.bpm.engine.impl.cfg org.camunda.bpm.engine.impl.history.handler -
-
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 HistoryEventHandlerProcessEngineConfigurationImpl. historyEventHandlerAs an instance ofCompositeHistoryEventHandlerit 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 List<HistoryEventHandler>ProcessEngineConfigurationImpl. customHistoryEventHandlersAllows users to add additionalHistoryEventHandlerinstances to process history events.Methods in org.camunda.bpm.engine.impl.cfg that return HistoryEventHandler Modifier and Type Method Description HistoryEventHandlerProcessEngineConfigurationImpl. getHistoryEventHandler()Methods in org.camunda.bpm.engine.impl.cfg that return types with arguments of type HistoryEventHandler Modifier and Type Method Description List<HistoryEventHandler>ProcessEngineConfigurationImpl. getCustomHistoryEventHandlers()Methods in org.camunda.bpm.engine.impl.cfg with parameters of type HistoryEventHandler Modifier and Type Method Description ProcessEngineConfigurationImplProcessEngineConfigurationImpl. setHistoryEventHandler(HistoryEventHandler historyEventHandler)Method parameters in org.camunda.bpm.engine.impl.cfg with type arguments of type HistoryEventHandler Modifier and Type Method Description voidProcessEngineConfigurationImpl. setCustomHistoryEventHandlers(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 classCompositeDbHistoryEventHandlerACompositeHistoryEventHandlerimplementation which additionally adds to the list ofHistoryEventHandlertheDbHistoryEventHandlerwhich persists events to a database.classCompositeHistoryEventHandlerAHistoryEventHandlerimplementation which delegates to a list ofHistoryEventHandler.classDbHistoryEventHandlerHistory 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 List<HistoryEventHandler>CompositeHistoryEventHandler. historyEventHandlersThe list ofHistoryEventHandlerwhich consume the event.Methods in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEventHandler Modifier and Type Method Description voidCompositeHistoryEventHandler. add(HistoryEventHandler historyEventHandler)Adds theHistoryEventHandlerto the list ofHistoryEventHandlerthat 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 parameterHistoryEventHandlerthat consume the event and addsDbHistoryEventHandlerto the list ofHistoryEventHandler.CompositeHistoryEventHandler(HistoryEventHandler... historyEventHandlers)Constructor that takes a varargs parameterHistoryEventHandlerthat consume the event.Constructor parameters in org.camunda.bpm.engine.impl.history.handler with type arguments of type HistoryEventHandler Constructor Description CompositeDbHistoryEventHandler(List<HistoryEventHandler> historyEventHandlers)Constructor that takes a list ofHistoryEventHandlerthat consume the event and addsDbHistoryEventHandlerto the list ofHistoryEventHandler.CompositeHistoryEventHandler(List<HistoryEventHandler> historyEventHandlers)Constructor that takes a list ofHistoryEventHandlerthat consume the event.
-