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

io.dropwizard.kafka.serializer.ByteBufferSerializerFactory Maven / Gradle / Ivy

package io.dropwizard.kafka.serializer;

import com.fasterxml.jackson.annotation.JsonTypeName;
import org.apache.kafka.common.serialization.ByteBufferSerializer;
import org.apache.kafka.common.serialization.Serializer;

@JsonTypeName("byte-buffer")
public class ByteBufferSerializerFactory extends SerializerFactory {
    @Override
    public Class> getSerializerClass() {
        return ByteBufferSerializer.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy