Interface GridContinuousBatch
-
- All Known Implementing Classes:
GridContinuousBatchAdapter,GridContinuousQueryBatch
public interface GridContinuousBatchContinuous routine batch.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(Object obj)Adds element to this batch.Collection<Object>collect()Collects elements that are currently in this batch.intsize()
-
-
-
Method Detail
-
add
void add(Object obj)
Adds element to this batch.- Parameters:
obj- Element to add.
-
collect
Collection<Object> collect()
Collects elements that are currently in this batch.- Returns:
- Elements in this batch.
-
size
int size()
- Returns:
- Current batch size.
-
-