Package one.microstream.util
Class BufferingCollector.Default<E>
- java.lang.Object
-
- one.microstream.util.BufferingCollector.Default<E>
-
- All Implemented Interfaces:
BufferingCollector<E>
- Enclosing interface:
- BufferingCollector<E>
public static final class BufferingCollector.Default<E> extends Object implements BufferingCollector<E>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface one.microstream.util.BufferingCollector
BufferingCollector.Default<E>
-
-
Constructor Summary
Constructors Constructor Description Default()
-
Method Summary
Modifier and Type Method Description void
accept(E element)
void
finalizeElements()
void
resetElements()
long
size()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface one.microstream.util.BufferingCollector
isEmpty
-
-
-
-
Method Detail
-
accept
public void accept(E element)
- Specified by:
accept
in interfaceBufferingCollector<E>
-
resetElements
public void resetElements()
- Specified by:
resetElements
in interfaceBufferingCollector<E>
-
finalizeElements
public void finalizeElements()
- Specified by:
finalizeElements
in interfaceBufferingCollector<E>
-
size
public long size()
- Specified by:
size
in interfaceBufferingCollector<E>
-
-