Class ProducedInternal<K,V>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.Produced<K,V>
-
- org.apache.kafka.streams.kstream.internals.ProducedInternal<K,V>
-
public class ProducedInternal<K,V> extends Produced<K,V>
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.streams.kstream.Produced
keySerde, partitioner, processorName, valueSerde
-
-
Constructor Summary
Constructors Constructor Description ProducedInternal(Produced<K,V> produced)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.kafka.common.serialization.Serde<K>
keySerde()
java.lang.String
name()
StreamPartitioner<? super K,? super V>
streamPartitioner()
org.apache.kafka.common.serialization.Serde<V>
valueSerde()
-
Methods inherited from class org.apache.kafka.streams.kstream.Produced
as, equals, hashCode, keySerde, streamPartitioner, valueSerde, with, with, withKeySerde, withName, withStreamPartitioner, withValueSerde
-
-
-
-
Method Detail
-
keySerde
public org.apache.kafka.common.serialization.Serde<K> keySerde()
-
valueSerde
public org.apache.kafka.common.serialization.Serde<V> valueSerde()
-
streamPartitioner
public StreamPartitioner<? super K,? super V> streamPartitioner()
-
name
public java.lang.String name()
-
-