Interface ValueTransformerSupplier<V,VR> 
- Type Parameters:
 V- value typeVR- transformed value type
- All Superinterfaces:
 ConnectedStoreProvider
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@Deprecated
@FunctionalInterface
public interface ValueTransformerSupplier<V,VR> 
extends ConnectedStoreProvider
Deprecated.
A 
ValueTransformerSupplier interface which can create one or more ValueTransformer instances.
 
 The supplier should always generate a new instance each time get() gets called. Creating
 a single ValueTransformer object and returning the same object reference in get() would be
 a violation of the supplier pattern and leads to runtime exceptions.
- See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionget()Deprecated.Return a newly constructedValueTransformerinstance.Methods inherited from interface org.apache.kafka.streams.processor.ConnectedStoreProvider
stores 
- 
Method Details
- 
get
ValueTransformer<V,VR> get()Deprecated.Return a newly constructedValueTransformerinstance. The supplier should always generate a new instance each timeget()gets called.Creating a single
ValueTransformerobject and returning the same object reference inget()is a violation of the supplier pattern and leads to runtime exceptions.- Returns:
 - a newly constructed 
ValueTransformerinstance 
 
 - 
 
FixedKeyProcessorSupplierinstead.