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 Summary
All 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.IFunctionalExceptionListener
exceptionOccurred 
- 
Methods inherited from interface jadex.commons.future.IFunctionalResultListener
resultAvailable 
 - 
 
 - 
 
- 
- 
Method Detail
- 
resultAvailableIfUndone
void resultAvailableIfUndone(E result)
Called when the result is available.- Parameters:
 result- The result.
 
- 
exceptionOccurredIfUndone
void exceptionOccurredIfUndone(java.lang.Exception exception)
Called when an exception occurred.- Parameters:
 exception- The exception.
 
 - 
 
 -