Interface EventArgumentsInterceptor


  • public interface EventArgumentsInterceptor
    Intercepts the Event arguments before the Event is passed to the StateMachine and allows for the arguments to be modified. This is for advanced uses only.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object[] modify​(java.lang.Object[] arguments)
      Modifies the specified array of event arguments.
    • Method Detail

      • modify

        java.lang.Object[] modify​(java.lang.Object[] arguments)
        Modifies the specified array of event arguments.
        Parameters:
        arguments - the original arguments.
        Returns:
        the new arguments. Should return the original array if no modification is needed.