Class KafkaProducerRecord<K,V>
- java.lang.Object
-
- io.vertx.reactivex.kafka.client.producer.KafkaProducerRecord<K,V>
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<KafkaProducerRecord>
__TYPE_ARG
io.vertx.lang.rx.TypeArg<K>
__typeArg_0
io.vertx.lang.rx.TypeArg<V>
__typeArg_1
-
Constructor Summary
Constructors Constructor Description KafkaProducerRecord(KafkaProducerRecord delegate)
KafkaProducerRecord(Object delegate, io.vertx.lang.rx.TypeArg<K> typeArg_0, io.vertx.lang.rx.TypeArg<V> typeArg_1)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description KafkaProducerRecord<K,V>
addHeader(KafkaHeader header)
Add an header to this record.KafkaProducerRecord<K,V>
addHeader(String key, Buffer value)
LikeaddHeader(java.lang.String, java.lang.String)
but with a key/value pairKafkaProducerRecord<K,V>
addHeader(String key, String value)
LikeaddHeader(java.lang.String, java.lang.String)
but with a key/value pairKafkaProducerRecord<K,V>
addHeaders(List<KafkaHeader> headers)
Add a list of headers to this record.static <K,V>
KafkaProducerRecord<K,V>create(String topic, K key, V value)
Create a concrete instance of a Vert.x producer recordstatic <K,V>
KafkaProducerRecord<K,V>create(String topic, K key, V value, Long timestamp, Integer partition)
Create a concrete instance of a Vert.x producer recordstatic <K,V>
KafkaProducerRecord<K,V>create(String topic, V value)
Create a concrete instance of a Vert.x producer recordboolean
equals(Object o)
KafkaProducerRecord
getDelegate()
int
hashCode()
List<KafkaHeader>
headers()
K
key()
static <K,V>
KafkaProducerRecord<K,V>newInstance(KafkaProducerRecord arg)
static <K,V>
KafkaProducerRecord<K,V>newInstance(KafkaProducerRecord arg, io.vertx.lang.rx.TypeArg<K> __typeArg_K, io.vertx.lang.rx.TypeArg<V> __typeArg_V)
Integer
partition()
Long
timestamp()
String
topic()
String
toString()
V
value()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<KafkaProducerRecord> __TYPE_ARG
-
__typeArg_0
public final io.vertx.lang.rx.TypeArg<K> __typeArg_0
-
__typeArg_1
public final io.vertx.lang.rx.TypeArg<V> __typeArg_1
-
-
Constructor Detail
-
KafkaProducerRecord
public KafkaProducerRecord(KafkaProducerRecord delegate)
-
-
Method Detail
-
getDelegate
public KafkaProducerRecord getDelegate()
-
create
public static <K,V> KafkaProducerRecord<K,V> create(String topic, K key, V value, Long timestamp, Integer partition)
Create a concrete instance of a Vert.x producer record- Parameters:
topic
- the topic this record is being sent tokey
- the key (or null if no key is specified)value
- the valuetimestamp
- the timestamp of this recordpartition
- the partition to which the record will be sent (or null if no partition was specified)- Returns:
- Vert.x producer record
-
create
public static <K,V> KafkaProducerRecord<K,V> create(String topic, K key, V value)
Create a concrete instance of a Vert.x producer record- Parameters:
topic
- the topic this record is being sent tokey
- the key (or null if no key is specified)value
- the value- Returns:
- Vert.x producer record
-
create
public static <K,V> KafkaProducerRecord<K,V> create(String topic, V value)
Create a concrete instance of a Vert.x producer record- Parameters:
topic
- the topic this record is being sent tovalue
- the value- Returns:
- Vert.x producer record
-
topic
public String topic()
- Returns:
- the topic this record is being sent to
-
key
public K key()
- Returns:
- the key (or null if no key is specified)
-
value
public V value()
- Returns:
- the value
-
timestamp
public Long timestamp()
- Returns:
- the timestamp of this record
-
partition
public Integer partition()
- Returns:
- the partition to which the record will be sent (or null if no partition was specified)
-
addHeader
public KafkaProducerRecord<K,V> addHeader(String key, String value)
LikeaddHeader(java.lang.String, java.lang.String)
but with a key/value pair- Parameters:
key
-value
-- Returns:
-
addHeader
public KafkaProducerRecord<K,V> addHeader(String key, Buffer value)
LikeaddHeader(java.lang.String, java.lang.String)
but with a key/value pair- Parameters:
key
-value
-- Returns:
-
addHeader
public KafkaProducerRecord<K,V> addHeader(KafkaHeader header)
Add an header to this record.- Parameters:
header
- the header- Returns:
- current KafkaProducerRecord instance
-
addHeaders
public KafkaProducerRecord<K,V> addHeaders(List<KafkaHeader> headers)
Add a list of headers to this record.- Parameters:
headers
- the headers- Returns:
- current KafkaProducerRecord instance
-
headers
public List<KafkaHeader> headers()
- Returns:
- the headers of this record
-
newInstance
public static <K,V> KafkaProducerRecord<K,V> newInstance(KafkaProducerRecord arg)
-
newInstance
public static <K,V> KafkaProducerRecord<K,V> newInstance(KafkaProducerRecord arg, io.vertx.lang.rx.TypeArg<K> __typeArg_K, io.vertx.lang.rx.TypeArg<V> __typeArg_V)
-
-