Package jadex.commons.gui.future
Class SwingDelegationResultListener<E>
- java.lang.Object
 - 
- jadex.commons.gui.future.SwingDelegationResultListener<E>
 
 
- 
- All Implemented Interfaces:
 IFutureCommandResultListener<E>,IResultListener<E>,IUndoneResultListener<E>
public class SwingDelegationResultListener<E> extends java.lang.Object implements IUndoneResultListener<E>, IFutureCommandResultListener<E>
Delegation result listener that calls customResultAvailable and customExceptionOccurred on swing thread. 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected java.util.function.Consumer<java.lang.Exception>customExceptionListenerCustom result listenerprotected java.util.function.Consumer<E>customResultListenerCustom result listenerprotected Future<E>futureThe future to which calls are delegated.protected booleanundoneFlag if undone methods should be used. 
- 
Constructor Summary
Constructors Constructor Description SwingDelegationResultListener(Future<E> future)Create a new listener.SwingDelegationResultListener(Future<E> fut, java.util.function.Consumer<E> customResultListener)Create a new listener with functional interfaces.SwingDelegationResultListener(Future<E> fut, java.util.function.Consumer<E> customResultListener, java.util.function.Consumer<java.lang.Exception> customExceptionListener)Create a new listener with functional interfaces. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommandAvailable(java.lang.Object command)Called when a command is available.voidcustomCommandAvailable(java.lang.Object command)Called when a command is available.voidcustomExceptionOccurred(java.lang.Exception exception)Called when an exception occurred.voidcustomResultAvailable(E result)Called when the result is available.voidexceptionOccurred(java.lang.Exception exception)Called when an exception occurred.voidexceptionOccurredIfUndone(java.lang.Exception exception)Called when an exception occurred.booleanisUndone()Get the undone.voidresultAvailable(E result)Called when the result is available.voidresultAvailableIfUndone(E result)Called when the result is available. 
 - 
 
- 
- 
Field Detail
- 
undone
protected boolean undone
Flag if undone methods should be used. 
- 
customResultListener
protected java.util.function.Consumer<E> customResultListener
Custom result listener 
- 
customExceptionListener
protected java.util.function.Consumer<java.lang.Exception> customExceptionListener
Custom result listener 
 - 
 
- 
Constructor Detail
- 
SwingDelegationResultListener
public SwingDelegationResultListener(Future<E> fut, java.util.function.Consumer<E> customResultListener)
Create a new listener with functional interfaces.- Parameters:
 fut- The Delegate.customResultListener- The listener.
 
- 
SwingDelegationResultListener
public SwingDelegationResultListener(Future<E> fut, java.util.function.Consumer<E> customResultListener, java.util.function.Consumer<java.lang.Exception> customExceptionListener)
Create a new listener with functional interfaces.- Parameters:
 fut- The Delegate.customResultListener- The custom result listener.customExceptionListener- The listener that is called on exceptions.
 
 - 
 
- 
Method Detail
- 
resultAvailable
public final void resultAvailable(E result)
Called when the result is available.- Specified by:
 resultAvailablein interfaceIResultListener<E>- Parameters:
 result- The result.
 
- 
exceptionOccurred
public final void exceptionOccurred(java.lang.Exception exception)
Called when an exception occurred.- Specified by:
 exceptionOccurredin interfaceIResultListener<E>- Parameters:
 exception- The exception.
 
- 
customResultAvailable
public void customResultAvailable(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.
 
- 
commandAvailable
public final void commandAvailable(java.lang.Object command)
Called when a command is available.- Specified by:
 commandAvailablein interfaceIFutureCommandResultListener<E>
 
- 
customCommandAvailable
public void customCommandAvailable(java.lang.Object command)
Called when a command is available. 
- 
resultAvailableIfUndone
public void resultAvailableIfUndone(E result)
Called when the result is available.- Specified by:
 resultAvailableIfUndonein interfaceIUndoneResultListener<E>- Parameters:
 result- The result.
 
- 
exceptionOccurredIfUndone
public void exceptionOccurredIfUndone(java.lang.Exception exception)
Called when an exception occurred.- Specified by:
 exceptionOccurredIfUndonein interfaceIUndoneResultListener<E>- Parameters:
 exception- The exception.
 
- 
isUndone
public boolean isUndone()
Get the undone.- Returns:
 - The undone.
 
 
 - 
 
 -