Class KafkaConsumerRecords<K,V>
- java.lang.Object
-
- io.vertx.reactivex.kafka.client.consumer.KafkaConsumerRecords<K,V>
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<KafkaConsumerRecords>__TYPE_ARGTypeArg<K>__typeArg_0TypeArg<V>__typeArg_1
-
Constructor Summary
Constructors Constructor Description KafkaConsumerRecords(KafkaConsumerRecords delegate)KafkaConsumerRecords(Object delegate, TypeArg<K> typeArg_0, TypeArg<V> typeArg_1)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)KafkaConsumerRecordsgetDelegate()inthashCode()booleanisEmpty()static <K,V>
KafkaConsumerRecords<K,V>newInstance(KafkaConsumerRecords arg)static <K,V>
KafkaConsumerRecords<K,V>newInstance(KafkaConsumerRecords arg, TypeArg<K> __typeArg_K, TypeArg<V> __typeArg_V)KafkaConsumerRecord<K,V>recordAt(int index)Get the record at the given indexintsize()StringtoString()
-
-
-
Method Detail
-
getDelegate
public KafkaConsumerRecords getDelegate()
-
size
public int size()
- Returns:
- the total number of records in this batch
-
isEmpty
public boolean isEmpty()
- Returns:
- whether this batch contains any records
-
recordAt
public KafkaConsumerRecord<K,V> recordAt(int index)
Get the record at the given index- Parameters:
index- the index of the record to get- Returns:
-
newInstance
public static <K,V> KafkaConsumerRecords<K,V> newInstance(KafkaConsumerRecords arg)
-
newInstance
public static <K,V> KafkaConsumerRecords<K,V> newInstance(KafkaConsumerRecords arg, TypeArg<K> __typeArg_K, TypeArg<V> __typeArg_V)
-
-