/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.reactivex.kafka.client.producer;

import java.util.Map;
import io.reactivex.Observable;
import io.reactivex.Flowable;
import io.reactivex.Single;
import io.reactivex.Completable;
import io.reactivex.Maybe;
import java.util.List;

Vert.x Kafka producer record.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Vert.x Kafka producer record. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.kafka.client.producer.KafkaProducerRecord original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.kafka.client.producer.KafkaProducerRecord.class) public class KafkaProducerRecord<K,V> { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; KafkaProducerRecord that = (KafkaProducerRecord) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<KafkaProducerRecord> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new KafkaProducerRecord((io.vertx.kafka.client.producer.KafkaProducerRecord) obj), KafkaProducerRecord::getDelegate ); private final io.vertx.kafka.client.producer.KafkaProducerRecord<K,V> delegate; public final io.vertx.lang.rx.TypeArg<K> __typeArg_0; public final io.vertx.lang.rx.TypeArg<V> __typeArg_1; public KafkaProducerRecord(io.vertx.kafka.client.producer.KafkaProducerRecord delegate) { this.delegate = delegate; this.__typeArg_0 = io.vertx.lang.rx.TypeArg.unknown(); this.__typeArg_1 = io.vertx.lang.rx.TypeArg.unknown(); } public KafkaProducerRecord(io.vertx.kafka.client.producer.KafkaProducerRecord delegate, io.vertx.lang.rx.TypeArg<K> typeArg_0, io.vertx.lang.rx.TypeArg<V> typeArg_1) { this.delegate = delegate; this.__typeArg_0 = typeArg_0; this.__typeArg_1 = typeArg_1; } public io.vertx.kafka.client.producer.KafkaProducerRecord getDelegate() { return delegate; }
Create a concrete instance of a Vert.x producer record
Params:
  • topic – the topic this record is being sent to
  • key – the key (or null if no key is specified)
  • value – the value
  • timestamp – the timestamp of this record
  • partition – the partition to which the record will be sent (or null if no partition was specified)
Returns:Vert.x producer record
/** * Create a concrete instance of a Vert.x producer record * @param topic the topic this record is being sent to * @param key the key (or null if no key is specified) * @param value the value * @param timestamp the timestamp of this record * @param partition the partition to which the record will be sent (or null if no partition was specified) * @return Vert.x producer record */
public static <K, V> io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> create(String topic, K key, V value, Long timestamp, Integer partition) { io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> ret = io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord.newInstance(io.vertx.kafka.client.producer.KafkaProducerRecord.create(topic, key, value, timestamp, partition), io.vertx.lang.rx.TypeArg.unknown(), io.vertx.lang.rx.TypeArg.unknown()); return ret; }
Create a concrete instance of a Vert.x producer record
Params:
  • topic – the topic this record is being sent to
  • key – the key (or null if no key is specified)
  • value – the value
Returns:Vert.x producer record
/** * Create a concrete instance of a Vert.x producer record * @param topic the topic this record is being sent to * @param key the key (or null if no key is specified) * @param value the value * @return Vert.x producer record */
public static <K, V> io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> create(String topic, K key, V value) { io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> ret = io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord.newInstance(io.vertx.kafka.client.producer.KafkaProducerRecord.create(topic, key, value), io.vertx.lang.rx.TypeArg.unknown(), io.vertx.lang.rx.TypeArg.unknown()); return ret; }
Create a concrete instance of a Vert.x producer record
Params:
  • topic – the topic this record is being sent to
  • value – the value
Returns:Vert.x producer record
/** * Create a concrete instance of a Vert.x producer record * @param topic the topic this record is being sent to * @param value the value * @return Vert.x producer record */
public static <K, V> io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> create(String topic, V value) { io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> ret = io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord.newInstance(io.vertx.kafka.client.producer.KafkaProducerRecord.create(topic, value), io.vertx.lang.rx.TypeArg.unknown(), io.vertx.lang.rx.TypeArg.unknown()); return ret; }
Returns:the topic this record is being sent to
/** * @return the topic this record is being sent to */
public String topic() { String ret = delegate.topic(); return ret; }
Returns:the key (or null if no key is specified)
/** * @return the key (or null if no key is specified) */
public K key() { K ret = (K)__typeArg_0.wrap(delegate.key()); return ret; }
Returns:the value
/** * @return the value */
public V value() { V ret = (V)__typeArg_1.wrap(delegate.value()); return ret; }
Returns:the timestamp of this record
/** * @return the timestamp of this record */
public Long timestamp() { Long ret = delegate.timestamp(); return ret; }
Returns:the partition to which the record will be sent (or null if no partition was specified)
/** * @return the partition to which the record will be sent (or null if no partition was specified) */
public Integer partition() { Integer ret = delegate.partition(); return ret; }
Like addHeader but with a key/value pair
Params:
  • key –
  • value –
Returns:
/** * Like {@link io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord#addHeader} but with a key/value pair * @param key * @param value * @return */
public io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> addHeader(String key, String value) { delegate.addHeader(key, value); return this; }
Like addHeader but with a key/value pair
Params:
  • key –
  • value –
Returns:
/** * Like {@link io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord#addHeader} but with a key/value pair * @param key * @param value * @return */
public io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> addHeader(String key, io.vertx.reactivex.core.buffer.Buffer value) { delegate.addHeader(key, value.getDelegate()); return this; }
Add an header to this record.
Params:
  • header – the header
Returns:current KafkaProducerRecord instance
/** * Add an header to this record. * @param header the header * @return current KafkaProducerRecord instance */
public io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> addHeader(io.vertx.reactivex.kafka.client.producer.KafkaHeader header) { delegate.addHeader(header.getDelegate()); return this; }
Add a list of headers to this record.
Params:
  • headers – the headers
Returns:current KafkaProducerRecord instance
/** * Add a list of headers to this record. * @param headers the headers * @return current KafkaProducerRecord instance */
public io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K, V> addHeaders(List<io.vertx.reactivex.kafka.client.producer.KafkaHeader> headers) { delegate.addHeaders(headers.stream().map(elt -> elt.getDelegate()).collect(java.util.stream.Collectors.toList())); return this; }
Returns:the headers of this record
/** * @return the headers of this record */
public List<io.vertx.reactivex.kafka.client.producer.KafkaHeader> headers() { if (cached_0 != null) { return cached_0; } List<io.vertx.reactivex.kafka.client.producer.KafkaHeader> ret = delegate.headers().stream().map(elt -> io.vertx.reactivex.kafka.client.producer.KafkaHeader.newInstance(elt)).collect(java.util.stream.Collectors.toList()); cached_0 = ret; return ret; } private List<io.vertx.reactivex.kafka.client.producer.KafkaHeader> cached_0; public static <K,V>KafkaProducerRecord<K,V> newInstance(io.vertx.kafka.client.producer.KafkaProducerRecord arg) { return arg != null ? new KafkaProducerRecord<K,V>(arg) : null; } public static <K,V>KafkaProducerRecord<K,V> newInstance(io.vertx.kafka.client.producer.KafkaProducerRecord arg, io.vertx.lang.rx.TypeArg<K> __typeArg_K, io.vertx.lang.rx.TypeArg<V> __typeArg_V) { return arg != null ? new KafkaProducerRecord<K,V>(arg, __typeArg_K, __typeArg_V) : null; } }