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 Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
add(V value)
Notify the collector of a item of interest.default void
flush()
Request processing of any added values.
-