protected void handleVariableUpdateEvent()

in ddm-bpm-history-event-handler/src/main/java/com/epam/digital/data/platform/bpm/history/base/handler/ProcessPublisherHistoryEventHandler.java [125:132]


  protected void handleVariableUpdateEvent(HistoricVariableUpdateEventEntity variableUpdateEvent) {
    var variableName = variableUpdateEvent.getVariableName();
    if (!isCompletionResultOrExcerptId(variableName)
        || variableUpdateEvent.isEventOfType(HistoryEventTypes.VARIABLE_INSTANCE_DELETE)) {
      return;
    }
    publisher.patch(historyMapper.toHistoryProcess(variableUpdateEvent));
  }