example-kafkastreams icon indicating copy to clipboard operation
example-kafkastreams copied to clipboard

Kafka Streams DSL vs Processor API

Results 3 example-kafkastreams issues
Sort by recently updated
recently updated
newest added

Do you think, Code would be more readable using https://github.com/lightbend/kafka-streams-scala ?

Hiding Strings in distinct types that we'd use internally would help. In code we use `evpv-store` and `pv-store` only once as Strings and immediately to hide them in distinct classes....

With this and a few more minor changes ```scala daemonThread { sleep(3.seconds) // scalastyle:off startStreams(deduplicate(Serdes.String(), Serdes.String())) } ``` I can change ```scala Stores.windowStoreBuilder( Stores.persistentWindowStore(storeName, retention, segments, window, retainDuplicates), Serdes.String(), Serdes.String()...