All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.kafka.client.serialization.BufferSerde Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
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