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

    Modifier and Type
    Method
    Description
    modify(Object[] arguments)
    Modifies the specified array of event arguments.
  • Method Details

    • modify

      Object[] modify(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.