Package org.apache.kafka.streams.kstream
Interface TransformerSupplier<K,V,R>
-
- Type Parameters:
K
- key typeV
- value typeR
-KeyValue
return type (both key and value type can be set arbitrarily)
public interface TransformerSupplier<K,V,R>
ATransformerSupplier
interface which can create one or moreTransformer
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Transformer<K,V,R>
get()
Return a newTransformer
instance.
-
-
-
Method Detail
-
get
Transformer<K,V,R> get()
Return a newTransformer
instance.- Returns:
- a new
Transformer
instance
-
-