use of org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler in project camunda-bpm-platform by camunda.
the class HistoryEventProcessor method processHistoryEvents.
/**
* Process an {@link HistoryEvent} and handle them directly after creation.
* The {@link HistoryEvent} is created with the help of the given
* {@link HistoryEventCreator} implementation.
*
* @param creator the creator is used to create the {@link HistoryEvent} which should be thrown
*/
public static void processHistoryEvents(HistoryEventCreator creator) {
HistoryEventProducer historyEventProducer = Context.getProcessEngineConfiguration().getHistoryEventProducer();
HistoryEventHandler historyEventHandler = Context.getProcessEngineConfiguration().getHistoryEventHandler();
HistoryEvent singleEvent = creator.createHistoryEvent(historyEventProducer);
if (singleEvent != null) {
historyEventHandler.handleEvent(singleEvent);
}
List<HistoryEvent> eventList = creator.createHistoryEvents(historyEventProducer);
historyEventHandler.handleEvents(eventList);
}
use of org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler in project camunda-bpm-platform by camunda.
the class CompositeDbHistoryEventHandlerTest method testCompositeDbHistoryEventHandlerArgumentConstructorWithEmptyList.
@Deployment(resources = { "org/camunda/bpm/engine/test/history/HistoryLevelTest.bpmn20.xml" })
public void testCompositeDbHistoryEventHandlerArgumentConstructorWithEmptyList() {
CompositeDbHistoryEventHandler compositeDbHistoryEventHandler = new CompositeDbHistoryEventHandler(new ArrayList<HistoryEventHandler>());
processEngineConfiguration.setHistoryEventHandler(compositeDbHistoryEventHandler);
startProcessAndCompleteUserTask();
assertEquals(0, countCustomHistoryEventHandler);
assertEquals(2, historyService.createHistoricDetailQuery().count());
}
use of org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler in project camunda-bpm-platform by camunda.
the class CompositeDbHistoryEventHandlerTest method testCompositeDbHistoryEventHandlerArgumentConstructorWithNotEmptyListNotNullTwoEvents.
@Deployment(resources = { "org/camunda/bpm/engine/test/history/HistoryLevelTest.bpmn20.xml" })
public void testCompositeDbHistoryEventHandlerArgumentConstructorWithNotEmptyListNotNullTwoEvents() {
// prepare the list with two events
List<HistoryEventHandler> historyEventHandlers = new ArrayList<HistoryEventHandler>();
historyEventHandlers.add(new CustomDbHistoryEventHandler());
historyEventHandlers.add(new CustomDbHistoryEventHandler());
CompositeDbHistoryEventHandler compositeDbHistoryEventHandler = new CompositeDbHistoryEventHandler(historyEventHandlers);
processEngineConfiguration.setHistoryEventHandler(compositeDbHistoryEventHandler);
startProcessAndCompleteUserTask();
assertEquals(4, countCustomHistoryEventHandler);
assertEquals(2, historyService.createHistoricDetailQuery().count());
}
use of org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler in project camunda-bpm-platform by camunda.
the class CompositeDbHistoryEventHandlerTest method testCompositeDbHistoryEventHandlerArgumentConstructorWithNullVarargs.
public void testCompositeDbHistoryEventHandlerArgumentConstructorWithNullVarargs() {
HistoryEventHandler historyEventHandler = null;
try {
new CompositeDbHistoryEventHandler(historyEventHandler);
fail("NullValueException expected");
} catch (NullValueException e) {
assertTextPresent("History event handler is null", e.getMessage());
}
}
use of org.camunda.bpm.engine.impl.history.handler.HistoryEventHandler in project camunda-bpm-platform by camunda.
the class CompositeHistoryEventHandlerTest method testCompositeHistoryEventHandlerArgumentConstructorWithNullVarargs.
public void testCompositeHistoryEventHandlerArgumentConstructorWithNullVarargs() {
HistoryEventHandler historyEventHandler = null;
try {
new CompositeHistoryEventHandler(historyEventHandler);
fail("NullValueException expected");
} catch (NullValueException e) {
assertTextPresent("History event handler is null", e.getMessage());
}
}
Aggregations