Interface CallbackOperation<T>


  • public interface CallbackOperation<T>
    Callback for operations. Usually used for conversations with the user that require asynchronous operations.
    • Method Detail

      • invoke

        void invoke​(CallbackChain chain,
                    T context,
                    java.lang.Object value)
        The operation to be called via chain
        Parameters:
        chain - chain of callbacks to be invoked; this method should be called manually by each listener
        context - context
        value - value to be passed to the chain