Uses of Interface
io.vertx.kafka.client.producer.KafkaProducer
Packages that use KafkaProducer
-
Uses of KafkaProducer in io.vertx.kafka.client.producer
Methods in io.vertx.kafka.client.producer that return KafkaProducerModifier and TypeMethodDescriptionKafkaProducer.abortTransaction(Handler<AsyncResult<Void>> handler) Aborts the ongoing transaction.KafkaProducer.beginTransaction(Handler<AsyncResult<Void>> handler) Starts a new kafka transaction.KafkaProducer.commitTransaction(Handler<AsyncResult<Void>> handler) Commits the ongoing transaction.static <K,V> KafkaProducer<K, V> Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, Map<String, String> config, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, Properties config) Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, Properties config, Class<K> keyType, Class<V> valueType) Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, Properties config, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) Create a new KafkaProducer instancestatic <K,V> KafkaProducer<K, V> Create a new KafkaProducer instance from a nativeProducer.static <K,V> KafkaProducer<K, V> KafkaProducer.create(Vertx vertx, org.apache.kafka.clients.producer.Producer<K, V> producer, KafkaClientOptions options) Create a new KafkaProducer instance from a nativeProducer.static <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, KafkaClientOptions options) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, KafkaClientOptions options, Class<K> keyType, Class<V> valueType) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, KafkaClientOptions options, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Map<String, String> config, Class<K> keyType, Class<V> valueType) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Map<String, String> config, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Properties config) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Properties config, Class<K> keyType, Class<V> valueType) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenamestatic <K,V> KafkaProducer<K, V> KafkaProducer.createShared(Vertx vertx, String name, Properties config, org.apache.kafka.common.serialization.Serializer<K> keySerializer, org.apache.kafka.common.serialization.Serializer<V> valueSerializer) Get or create a KafkaProducer instance which shares its stream with any other KafkaProducer created with the samenameKafkaProducer.drainHandler(Handler<Void> handler) KafkaProducer.exceptionHandler(Handler<Throwable> handler) KafkaProducer.flush(Handler<AsyncResult<Void>> completionHandler) Invoking this method makes all buffered records immediately available to writeKafkaProducer.initTransactions(Handler<AsyncResult<Void>> handler) Initializes the underlying kafka transactional producer.KafkaProducer.partitionsFor(String topic, Handler<AsyncResult<List<PartitionInfo>>> handler) Get the partition metadata for the give topic.KafkaProducer.send(KafkaProducerRecord<K, V> record, Handler<AsyncResult<RecordMetadata>> handler) Asynchronously write a record to a topicKafkaProducer.setWriteQueueMaxSize(int i)