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

io.quarkus.qe.kafka.config.VertxKProducerConfig Maven / Gradle / Ivy

package io.quarkus.qe.kafka.config;

import io.smallrye.config.ConfigMapping;
import io.smallrye.config.WithName;

@ConfigMapping(prefix = "vertx.kafka.producer")
public interface VertxKProducerConfig {

    @WithName("delay-ms")
    long delay();

    @WithName("batch-size")
    int batchSize();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy