Package-level declarations
Types
Link copied to clipboard
abstract class GlobalKTableDefinition<K, V>(val tableName: String, val storeName: String = "-store", val topicName: String = "-topic", val serdes: KeyValueSerdes<K, V>, val storeType: <Error class: unknown class><K, V> = timestampedKeyValueStore()) : TopicDefinition<K, V>
equals a GlobalTableDefinition
Link copied to clipboard
A pair of Serdes - one for the Key, another for the Value.
Link copied to clipboard
A definition for any Kafka topic.
Link copied to clipboard
Functions
Link copied to clipboard
fun <K, V> TopicDefinition<K, V>.consumeAsKStream(builder: StreamsBuilder, consumer: Consumed<K, V> = serdes.consumer("${pid}.input-stream")): KStream<K, V>
Link copied to clipboard
fun <K, V> TopicDefinition<K, V>.consumeAsKTable(builder: StreamsBuilder, consumer: Consumed<K, V> = serdes.consumer("${pid}.input-table")): KTable<K, V>