Class SwingIntermediateResultListener<E>

    • Constructor Detail

      • SwingIntermediateResultListener

        public SwingIntermediateResultListener​(IFunctionalResultListener<E> intermediateListener)
        Create a new listener with functional interfaces.
        Parameters:
        intermediateListener - The intermediate listener.
      • SwingIntermediateResultListener

        public SwingIntermediateResultListener​(IFunctionalResultListener<E> intermediateListener,
                                               IFunctionalResultListener<java.lang.Void> finishedListener)
        Create a new listener with functional interfaces.
        Parameters:
        intermediateListener - The intermediate listener.
        finishedListener - The finished listener, called when no more intermediate results will arrive.
      • SwingIntermediateResultListener

        public SwingIntermediateResultListener​(IFunctionalResultListener<E> intermediateListener,
                                               IFunctionalResultListener<java.lang.Void> finishedListener,
                                               IFunctionalExceptionListener exceptionListener)
        Create a new listener with functional interfaces.
        Parameters:
        intermediateListener - The intermediate listener.
        finishedListener - The finished listener, called when no more intermediate results will arrive.
        exceptionListener - The listener that is called on exceptions.
      • SwingIntermediateResultListener

        public SwingIntermediateResultListener​(IIntermediateResultListener<E> listener)
        Create a new listener.
    • Method Detail

      • resultAvailable

        public void resultAvailable​(java.util.Collection<E> result)
        Called when the result is available. This method is only called for non-intermediate futures, i.e. when this method is called it is guaranteed that the intermediateResultAvailable method has not been called.
        Specified by:
        resultAvailable in interface IFunctionalResultListener<E>
        Parameters:
        result - The final result.
      • exceptionOccurred

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

        public void customFinished()
        Declare that the future is finished.
      • customResultAvailable

        public void customResultAvailable​(java.util.Collection<E> result)
        Called when the result is available.
        Parameters:
        result - The result.
      • customExceptionOccurred

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

        public void customIntermediateResultAvailable​(E result)
        Called when an intermediate result is available.
        Parameters:
        result - The result.
      • customCommandAvailable

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

        public void resultAvailableIfUndone​(java.util.Collection<E> result)
        Called when the result is available.
        Specified by:
        resultAvailableIfUndone in interface IUndoneResultListener<E>
        Parameters:
        result - The result.
      • exceptionOccurredIfUndone

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

        public void finishedIfUndone()
        Declare that the future is finished. This method is only called for intermediate futures, i.e. when this method is called it is guaranteed that the intermediateResultAvailable method was called for all intermediate results before.
        Specified by:
        finishedIfUndone in interface IUndoneIntermediateResultListener<E>
      • isUndone

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