Package com.oracle.coherence.common.base
Interface Collector<V>
- 
- Type Parameters:
- V- the collected type
 - All Known Implementing Classes:
- NullImplementation.NullCollector
 
 public interface Collector<V>A Collector is mechanism for receiving items.- Author:
- mf 2010.10.06
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidadd(V value)Notify the collector of a item of interest.default voidflush()Request processing of any added values.
 
-