Interface IMessageEventListener

All Known Implementing Classes:
MessageEventListener

public interface IMessageEventListener
This interface allows listening to the evaluation of a message event.
Since:
9.1
Author:
A. Pragt
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is invoked when a case is created by the message event.
    void
    This method is invoked when a case is updated by the message event.
  • Method Details

    • caseUpdated

      void caseUpdated(IProcessCase processCase)
      This method is invoked when a case is updated by the message event.
      Parameters:
      processCase - The involved process case, never null.
    • caseCreated

      void caseCreated(IProcessCase processCase)
      This method is invoked when a case is created by the message event.
      Parameters:
      processCase - The created proces case, never null.