Skip to content

Instantly share code, notes, and snippets.

@ivanobulo
Last active March 11, 2019 06:16
Show Gist options
  • Save ivanobulo/f84200f8168eaffc54ddd5bbbf221c92 to your computer and use it in GitHub Desktop.
Save ivanobulo/f84200f8168eaffc54ddd5bbbf221c92 to your computer and use it in GitHub Desktop.
object SerdeImplicits {
implicit def consumedAuto[K, V](implicit kSerde: KafkaAvroSerde[K], vSerde: KafkaAvroSerde[V]): Consumed[K, V] = ???
implicit def producedAuto[K, V](implicit kSerde: KafkaAvroSerde[K], vSerde: KafkaAvroSerde[V]): Produced[K, V] = ???
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment