Uses of Interface
org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler

Packages that use HistoryEventHandler
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
protected  HistoryEventHandler ProcessEngineConfigurationImpl.historyEventHandler
           
 

Methods in org.camunda.bpm.engine.impl.cfg that return HistoryEventHandler
 HistoryEventHandler ProcessEngineConfigurationImpl.getHistoryEventHandler()
           
 

Methods in org.camunda.bpm.engine.impl.cfg with parameters of type HistoryEventHandler
 ProcessEngineConfigurationImpl ProcessEngineConfigurationImpl.setHistoryEventHandler(HistoryEventHandler historyEventHandler)
           
 

Uses of HistoryEventHandler in org.camunda.bpm.engine.impl.history.handler
 

Classes in org.camunda.bpm.engine.impl.history.handler that implement HistoryEventHandler
 class CompositeDbHistoryEventHandler
          A CompositeHistoryEventHandler implementation which additionally adds to the list of HistoryEventHandler the DbHistoryEventHandler which persists events to a database.
 class CompositeHistoryEventHandler
          A HistoryEventHandler implementation which delegates to a list of HistoryEventHandler.
 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
protected  List<HistoryEventHandler> CompositeHistoryEventHandler.historyEventHandlers
          The list of HistoryEventHandler which consume the event.
 

Methods in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEventHandler
 void CompositeHistoryEventHandler.add(HistoryEventHandler historyEventHandler)
          Adds the HistoryEventHandler to the list of HistoryEventHandler that consume the event.
 

Constructors in org.camunda.bpm.engine.impl.history.handler with parameters of type HistoryEventHandler
CompositeDbHistoryEventHandler(HistoryEventHandler... historyEventHandlers)
          Constructor that takes a varargs parameter HistoryEventHandler that consume the event and adds DbHistoryEventHandler to the list of HistoryEventHandler.
CompositeHistoryEventHandler(HistoryEventHandler... historyEventHandlers)
          Constructor that takes a varargs parameter HistoryEventHandler that consume the event.
 

Constructor parameters in org.camunda.bpm.engine.impl.history.handler with type arguments of type HistoryEventHandler
CompositeDbHistoryEventHandler(List<HistoryEventHandler> historyEventHandlers)
          Constructor that takes a list of HistoryEventHandler that consume the event and adds DbHistoryEventHandler to the list of HistoryEventHandler.
CompositeHistoryEventHandler(List<HistoryEventHandler> historyEventHandlers)
          Constructor that takes a list of HistoryEventHandler that consume the event.
 



Copyright © 2017 camunda services GmbH. All rights reserved.