Class SwingExceptionDelegationResultListener<E,​T>

    • Field Detail

      • future

        protected Future<T> future
        The future to which calls are delegated.
      • undone

        protected boolean undone
        Flag if undone methods should be used.
    • Constructor Detail

      • SwingExceptionDelegationResultListener

        public SwingExceptionDelegationResultListener​(Future<T> future)
        Create a new listener.
    • Method Detail

      • resultAvailable

        public final void resultAvailable​(E result)
        Called when the result is available.
        Specified by:
        resultAvailable in interface IFunctionalResultListener<E>
        Parameters:
        result - The result.
      • exceptionOccurred

        public final void exceptionOccurred​(java.lang.Exception exception)
        Called when an exception occurred.
        Specified by:
        exceptionOccurred in interface IFunctionalExceptionListener
        Parameters:
        exception - The exception.
      • customResultAvailable

        public abstract void customResultAvailable​(E result)
                                            throws java.lang.Exception
        Called when the result is available.
        Parameters:
        result - The result.
        Throws:
        java.lang.Exception
      • customExceptionOccurred

        public void customExceptionOccurred​(java.lang.Exception exception)
        Called when an exception occurred.
        Parameters:
        exception - The exception.
      • customCommandAvailable

        public void customCommandAvailable​(java.lang.Object command)
        Called when a command is available.
      • exceptionOccurredIfUndone

        public void exceptionOccurredIfUndone​(java.lang.Exception exception)
        Called when an exception occurred.
        Specified by:
        exceptionOccurredIfUndone in interface IUndoneResultListener<E>
        Parameters:
        exception - The exception.
      • isUndone

        public boolean isUndone()
        Get the undone.
        Returns:
        The undone.