Class RepartitionedInternal<K,V>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.Repartitioned<K,V>
-
- org.apache.kafka.streams.kstream.internals.RepartitionedInternal<K,V>
-
public class RepartitionedInternal<K,V> extends Repartitioned<K,V>
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.streams.kstream.Repartitioned
keySerde, name, numberOfPartitions, partitioner, valueSerde
-
-
Constructor Summary
Constructors Constructor Description RepartitionedInternal(Repartitioned<K,V> repartitioned)
-
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()
java.lang.Integer
numberOfPartitions()
StreamPartitioner<K,V>
streamPartitioner()
org.apache.kafka.common.serialization.Serde<V>
valueSerde()
-
Methods inherited from class org.apache.kafka.streams.kstream.Repartitioned
as, numberOfPartitions, streamPartitioner, with, withKeySerde, withName, withNumberOfPartitions, withStreamPartitioner, withValueSerde
-
-
-
-
Constructor Detail
-
RepartitionedInternal
public RepartitionedInternal(Repartitioned<K,V> repartitioned)
-
-
Method Detail
-
name
public java.lang.String name()
-
keySerde
public org.apache.kafka.common.serialization.Serde<K> keySerde()
-
valueSerde
public org.apache.kafka.common.serialization.Serde<V> valueSerde()
-
streamPartitioner
public StreamPartitioner<K,V> streamPartitioner()
-
numberOfPartitions
public java.lang.Integer numberOfPartitions()
-
-