Tabnine Logo
DbHistoryEventHandler.insertOrUpdate
Code IndexAdd Tabnine to your IDE (free)

How to use
insertOrUpdate
method
in
org.camunda.bpm.engine.impl.history.handler.DbHistoryEventHandler

Best Java code snippets using org.camunda.bpm.engine.impl.history.handler.DbHistoryEventHandler.insertOrUpdate (Showing top 3 results out of 315)

origin: camunda/camunda-bpm-platform

public void handleEvent(HistoryEvent historyEvent) {
 if (historyEvent instanceof HistoricVariableUpdateEventEntity) {
  insertHistoricVariableUpdateEntity((HistoricVariableUpdateEventEntity) historyEvent);
 } else if(historyEvent instanceof HistoricDecisionEvaluationEvent) {
  insertHistoricDecisionEvaluationEvent((HistoricDecisionEvaluationEvent) historyEvent);
 } else {
  insertOrUpdate(historyEvent);
 }
}
origin: camunda/camunda-bpm-platform

public void handleEvent(HistoryEvent historyEvent) {
 if (historyEvent instanceof HistoricVariableUpdateEventEntity) {
  insertHistoricVariableUpdateEntity((HistoricVariableUpdateEventEntity) historyEvent);
 } else if(historyEvent instanceof HistoricDecisionEvaluationEvent) {
  insertHistoricDecisionEvaluationEvent((HistoricDecisionEvaluationEvent) historyEvent);
 } else {
  insertOrUpdate(historyEvent);
 }
}
origin: org.camunda.bpm/camunda-engine

public void handleEvent(HistoryEvent historyEvent) {
 if (historyEvent instanceof HistoricVariableUpdateEventEntity) {
  insertHistoricVariableUpdateEntity((HistoricVariableUpdateEventEntity) historyEvent);
 } else if(historyEvent instanceof HistoricDecisionEvaluationEvent) {
  insertHistoricDecisionEvaluationEvent((HistoricDecisionEvaluationEvent) historyEvent);
 } else {
  insertOrUpdate(historyEvent);
 }
}
org.camunda.bpm.engine.impl.history.handlerDbHistoryEventHandlerinsertOrUpdate

Javadoc

general history event insert behavior

Popular methods of DbHistoryEventHandler

  • <init>
  • handleEvent
  • isInitialEvent
  • getDbEntityManager
  • insertHistoricDecisionEvaluationEvent
  • insertHistoricVariableUpdateEntity
    customized insert behavior for HistoricVariableUpdateEventEntity
  • shouldWriteHistoricDetail

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Github Copilot alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now