Package org.apache.kafka.streams.kstream
Interface TransformerSupplier<K,V,R>
-
- Type Parameters:
K- key typeV- value typeR-KeyValuereturn type (both key and value type can be set arbitrarily)
- All Superinterfaces:
ConnectedStoreProvider
- All Known Implementing Classes:
TransformerSupplierAdapter
public interface TransformerSupplier<K,V,R> extends ConnectedStoreProvider
ATransformerSupplierinterface which can create one or moreTransformerinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Transformer<K,V,R>get()Return a newTransformerinstance.-
Methods inherited from interface org.apache.kafka.streams.processor.ConnectedStoreProvider
stores
-
-
-
-
Method Detail
-
get
Transformer<K,V,R> get()
Return a newTransformerinstance.- Returns:
- a new
Transformerinstance
-
-