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)
public interface TransformerSupplier<K,V,R>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.
-
-
-
Method Detail
-
get
Transformer<K,V,R> get()
Return a newTransformerinstance.- Returns:
- a new
Transformerinstance
-
-