Package jadex.commons.future
Interface IUndoneResultListener<E>
- 
- All Superinterfaces:
- IFunctionalExceptionListener,- IFunctionalResultListener<E>,- IResultListener<E>
 - All Known Subinterfaces:
- IUndoneIntermediateResultListener<E>
 - All Known Implementing Classes:
- CollectionResultListener,- ComponentResultListener,- CounterResultListener,- DecouplingInterceptor.CopyReturnValueResultListener,- DelegationResultListener,- DuplicateRemovalIntermediateResultListener,- ExceptionDelegationResultListener,- IntermediateComponentResultListener,- IntermediateDelegationResultListener,- IntermediateExceptionDelegationResultListener,- IntervalBehavior.StepResultListener,- PrePostConditionInterceptor.CheckReturnValueResultListener,- ServiceRankingDelegationResultListener,- ServiceRankingDelegationResultListener2,- SwingDelegationResultListener,- SwingExceptionDelegationResultListener,- SwingIntermediateDelegationResultListener,- SwingIntermediateExceptionDelegationResultListener,- SwingIntermediateResultListener,- SwingResultListener,- TerminableDelegationResultListener,- TerminableIntermediateDelegationResultListener,- TimeoutIntermediateResultListener,- TimeoutResultListener,- TracingInterceptor.ReturnValueResultListener
 
 public interface IUndoneResultListener<E> extends IResultListener<E> 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexceptionOccurredIfUndone(java.lang.Exception exception)Called when an exception occurred.voidresultAvailableIfUndone(E result)Called when the result is available.- 
Methods inherited from interface jadex.commons.future.IFunctionalExceptionListenerexceptionOccurred
 - 
Methods inherited from interface jadex.commons.future.IFunctionalResultListenerresultAvailable
 
- 
 
- 
- 
- 
Method Detail- 
resultAvailableIfUndonevoid resultAvailableIfUndone(E result) Called when the result is available.- Parameters:
- result- The result.
 
 - 
exceptionOccurredIfUndonevoid exceptionOccurredIfUndone(java.lang.Exception exception) Called when an exception occurred.- Parameters:
- exception- The exception.
 
 
- 
 
-