Package jadex.future
Class IntermediateEmptyResultListener<E>
java.lang.Object
jadex.future.IntermediateEmptyResultListener<E>
- All Implemented Interfaces:
IIntermediateResultListener<E>,IResultListener<Collection<E>>
public class IntermediateEmptyResultListener<E>
extends Object
implements IIntermediateResultListener<E>
Empty implementation of the intermediate result listener.
Allows for omitting methods if not used.
Consider using instead of @code new IIntermediateResultListener<>()
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidexceptionOccurred(Exception exception) Called when an exception occurred.voidfinished()Declare that the future is finished.voidintermediateResultAvailable(E result) Called when an intermediate result is available.voidmaxResultCountAvailable(int max) Declare that the future result count is available.voidresultAvailable(Collection<E> result) Called when the result is available.
-
Constructor Details
-
IntermediateEmptyResultListener
public IntermediateEmptyResultListener()
-
-
Method Details
-
intermediateResultAvailable
Description copied from interface:IIntermediateResultListenerCalled when an intermediate result is available.- Specified by:
intermediateResultAvailablein interfaceIIntermediateResultListener<E>- Parameters:
result- The result.
-
resultAvailable
Description copied from interface:IResultListenerCalled when the result is available.- Specified by:
resultAvailablein interfaceIResultListener<E>- Parameters:
result- The result.
-
exceptionOccurred
Description copied from interface:IResultListenerCalled when an exception occurred.- Specified by:
exceptionOccurredin interfaceIResultListener<E>- Parameters:
exception- The exception.
-
finished
public void finished()Description copied from interface:IIntermediateResultListenerDeclare 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:
finishedin interfaceIIntermediateResultListener<E>
-
maxResultCountAvailable
public void maxResultCountAvailable(int max) Description copied from interface:IIntermediateResultListenerDeclare that the future result count is available. This method is only called for intermediate futures, i.e. when this method is called it is guaranteed that the intermediateResultAvailable method will be called as often as the result count indicates except an exception occurs.- Specified by:
maxResultCountAvailablein interfaceIIntermediateResultListener<E>
-