Package jadex.commons.future
Interface IFunctionalIntermediateResultCountListener
-
- All Known Subinterfaces:
IIntermediateFutureCommandResultListener<E>
,IIntermediateResultListener<E>
,IMultiplexCollector
,ITuple2ResultListener<E,F>
- All Known Implementing Classes:
CollectingIntermediateResultListener
,DefaultTuple2ResultListener
,DuplicateRemovalIntermediateResultListener
,FlattenMultiplexCollector
,IntermediateComponentResultListener
,IntermediateDefaultResultListener
,IntermediateDelegationResultListener
,IntermediateEmptyResultListener
,IntermediateExceptionDelegationResultListener
,MultiServiceInvocationHandler.IntermediateMethodResultListener
,ServiceRankingDelegationResultListener
,ServiceRankingDelegationResultListener2
,ServiceRankingResultListener
,SwingIntermediateDefaultResultListener
,SwingIntermediateDelegationResultListener
,SwingIntermediateExceptionDelegationResultListener
,SwingIntermediateResultListener
,TerminableIntermediateDelegationResultListener
,TimeoutIntermediateResultListener
,UnlimitedIntermediateDelegationResultListener
public interface IFunctionalIntermediateResultCountListener
Listener for the number of results.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
maxResultCountAvailable(int max)
Declare that the future result count is available.
-
-
-
Method Detail
-
maxResultCountAvailable
void maxResultCountAvailable(int max)
Declare 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.
-
-