Class StreamJoinedInternal<K,V1,V2>
- java.lang.Object
-
- org.apache.kafka.streams.kstream.StreamJoined<K,V1,V2>
-
- org.apache.kafka.streams.kstream.internals.StreamJoinedInternal<K,V1,V2>
-
public class StreamJoinedInternal<K,V1,V2> extends StreamJoined<K,V1,V2>
-
-
Field Summary
-
Fields inherited from class org.apache.kafka.streams.kstream.StreamJoined
keySerde, name, otherStoreSupplier, otherValueSerde, storeName, thisStoreSupplier, valueSerde
-
-
Constructor Summary
Constructors Constructor Description StreamJoinedInternal(StreamJoined<K,V1,V2> streamJoined)
-
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()
WindowBytesStoreSupplier
otherStoreSupplier()
org.apache.kafka.common.serialization.Serde<V2>
otherValueSerde()
java.lang.String
storeName()
WindowBytesStoreSupplier
thisStoreSupplier()
org.apache.kafka.common.serialization.Serde<V1>
valueSerde()
-
Methods inherited from class org.apache.kafka.streams.kstream.StreamJoined
as, toString, with, with, withKeySerde, withName, withOtherStoreSupplier, withOtherValueSerde, withStoreName, withThisStoreSupplier, withValueSerde
-
-
-
-
Constructor Detail
-
StreamJoinedInternal
public StreamJoinedInternal(StreamJoined<K,V1,V2> streamJoined)
-
-
Method Detail
-
keySerde
public org.apache.kafka.common.serialization.Serde<K> keySerde()
-
valueSerde
public org.apache.kafka.common.serialization.Serde<V1> valueSerde()
-
otherValueSerde
public org.apache.kafka.common.serialization.Serde<V2> otherValueSerde()
-
name
public java.lang.String name()
-
storeName
public java.lang.String storeName()
-
thisStoreSupplier
public WindowBytesStoreSupplier thisStoreSupplier()
-
otherStoreSupplier
public WindowBytesStoreSupplier otherStoreSupplier()
-
-