Uses of Interface
org.eximeebpms.bpm.engine.impl.history.handler.HistoryEventHandler
Packages that use HistoryEventHandler
Package
Description
-
Uses of HistoryEventHandler in org.eximeebpms.bpm.engine.impl.cfg
Fields in org.eximeebpms.bpm.engine.impl.cfg declared as HistoryEventHandlerModifier and TypeFieldDescriptionprotected HistoryEventHandlerProcessEngineConfigurationImpl.historyEventHandlerAs an instance ofCompositeHistoryEventHandlerit contains all the provided history event handlers that process history events.Fields in org.eximeebpms.bpm.engine.impl.cfg with type parameters of type HistoryEventHandlerModifier and TypeFieldDescriptionprotected List<HistoryEventHandler>ProcessEngineConfigurationImpl.customHistoryEventHandlersAllows users to add additionalHistoryEventHandlerinstances to process history events.Methods in org.eximeebpms.bpm.engine.impl.cfg that return HistoryEventHandlerMethods in org.eximeebpms.bpm.engine.impl.cfg that return types with arguments of type HistoryEventHandlerMethods in org.eximeebpms.bpm.engine.impl.cfg with parameters of type HistoryEventHandlerModifier and TypeMethodDescriptionProcessEngineConfigurationImpl.setHistoryEventHandler(HistoryEventHandler historyEventHandler) Method parameters in org.eximeebpms.bpm.engine.impl.cfg with type arguments of type HistoryEventHandlerModifier and TypeMethodDescriptionvoidProcessEngineConfigurationImpl.setCustomHistoryEventHandlers(List<HistoryEventHandler> customHistoryEventHandlers) -
Uses of HistoryEventHandler in org.eximeebpms.bpm.engine.impl.history.handler
Classes in org.eximeebpms.bpm.engine.impl.history.handler that implement HistoryEventHandlerModifier and TypeClassDescriptionclassACompositeHistoryEventHandlerimplementation which additionally adds to the list ofHistoryEventHandlertheDbHistoryEventHandlerwhich persists events to a database.classAHistoryEventHandlerimplementation which delegates to a list ofHistoryEventHandler.classHistory event handler that writes history events to the process engine database using the DbEntityManager.Fields in org.eximeebpms.bpm.engine.impl.history.handler with type parameters of type HistoryEventHandlerModifier and TypeFieldDescriptionprotected final List<HistoryEventHandler>CompositeHistoryEventHandler.historyEventHandlersThe list ofHistoryEventHandlerwhich consume the event.Methods in org.eximeebpms.bpm.engine.impl.history.handler with parameters of type HistoryEventHandlerModifier and TypeMethodDescriptionvoidCompositeHistoryEventHandler.add(HistoryEventHandler historyEventHandler) Adds theHistoryEventHandlerto the list ofHistoryEventHandlerthat consume the event.Constructors in org.eximeebpms.bpm.engine.impl.history.handler with parameters of type HistoryEventHandlerModifierConstructorDescriptionCompositeDbHistoryEventHandler(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.eximeebpms.bpm.engine.impl.history.handler with type arguments of type HistoryEventHandlerModifierConstructorDescriptionCompositeDbHistoryEventHandler(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.