Interface JzrActionHandler


  • public interface JzrActionHandler

    Each JzrAction handler object :

    • is a reference to a current action declared with Jeyzer.
    • handles only one action at a time.
    • must be unique per thread.

    Handlers are obtained from the Jeyzer Publisher instance and must be called on startAction to register the action with Jeyzer.
    Once the action is completed, the closeAction method must be called to release the action context.
    Thread safe

    • Method Detail

      • startAction

        void startAction​(JzrActionContext context)
        Declare a starting action with Jeyzer
        Parameters:
        context - the associated action context.
      • closeAction

        void closeAction()
        Close the action
      • setContextParameter

        void setContextParameter​(java.lang.String param,
                                 java.lang.String value)
        Set the action context parameter
        Parameters:
        param - the context parameter
        value - the context value