public interface ChunkFunction
ChunkFunction
interface is to be implemented by
any class that performs some type of processing on a set of input data
chunks to produce an output chunk. The function is many-to-one.
A chunk function must be thread-safe to be used in a multi-threaded
application.Modifier and Type | Method and Description |
---|---|
DataChunk |
apply(java.util.List<DataChunk> inputChunks)
Applies some function to a list of chunks.
|