Interface ProcessorSupplier<K,V>
-
- Type Parameters:
K- the type of keysV- the type of values
public interface ProcessorSupplier<K,V>A processor supplier that can create one or moreProcessorinstances. It is used inTopologyBuilderfor adding new processor operators, whose generated topology can then be replicated (and thus creating one or moreProcessorinstances) and distributed to multiple stream threads.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Processor<K,V>get()Return a newProcessorinstance.
-