FundingCircle / jackdaw

A Clojure library for the Apache Kafka distributed streaming platform.
https://fundingcircle.github.io/jackdaw/
BSD 3-Clause "New" or "Revised" License
369 stars 80 forks source link

Use Grouped class instead of Serialized #304

Closed DaveWM closed 2 years ago

DaveWM commented 2 years ago

The jackdaw.streams.interop ns uses the org.apache.kafka.streams.kstream.Serialized class, which has been removed for KS 3.0. The functionality has all been moved to the Grouped class, so this PR just switches out all usages of Serialized for Grouped.

Checklist