io.quarkus.kafka.client.serialization.BufferSerde Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-kafka-client Show documentation
Show all versions of quarkus-kafka-client Show documentation
Connect to Apache Kafka with its native API
package io.quarkus.kafka.client.serialization;
import org.apache.kafka.common.serialization.Serdes;
import io.vertx.core.buffer.Buffer;
public final class BufferSerde extends Serdes.WrapperSerde {
public BufferSerde() {
super(new BufferSerializer(), new BufferDeserializer());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy