Class TransformerSupplierAdapter<KIn,VIn,KOut,VOut>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.internals.TransformerSupplierAdapter<KIn,VIn,KOut,VOut>
-
- All Implemented Interfaces:
TransformerSupplier<KIn,VIn,java.lang.Iterable<KeyValue<KOut,VOut>>>,ConnectedStoreProvider
public class TransformerSupplierAdapter<KIn,VIn,KOut,VOut> extends java.lang.Object implements TransformerSupplier<KIn,VIn,java.lang.Iterable<KeyValue<KOut,VOut>>>
-
-
Constructor Summary
Constructors Constructor Description TransformerSupplierAdapter(TransformerSupplier<KIn,VIn,KeyValue<KOut,VOut>> transformerSupplier)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Transformer<KIn,VIn,java.lang.Iterable<KeyValue<KOut,VOut>>>get()Return a newTransformerinstance.java.util.Set<StoreBuilder<?>>stores()
-
-
-
Method Detail
-
get
public Transformer<KIn,VIn,java.lang.Iterable<KeyValue<KOut,VOut>>> get()
Description copied from interface:TransformerSupplierReturn a newTransformerinstance.- Specified by:
getin interfaceTransformerSupplier<KIn,VIn,KOut>- Returns:
- a new
Transformerinstance
-
stores
public java.util.Set<StoreBuilder<?>> stores()
- Specified by:
storesin interfaceConnectedStoreProvider- Returns:
- the state stores to be connected and added, or null if no stores should be automatically connected and added.
-
-