new KafkaConsumerRecord()
Vert.x Kafka consumer record
Methods
checksum() → {number}
Returns:
the checksum (CRC32) of the record.
- Type
- number
key() → {Object}
Returns:
the key (or null if no key is specified)
- Type
- Object
offset() → {number}
Returns:
the position of this record in the corresponding Kafka partition.
- Type
- number
partition() → {number}
Returns:
the partition from which this record is received
- Type
- number
timestamp() → {number}
Returns:
the timestamp of this record
- Type
- number
timestampType() → {Object}
Returns:
the timestamp type of this record
- Type
- Object
topic() → {string}
Returns:
the topic this record is received from
- Type
- string
value() → {Object}
Returns:
the value
- Type
- Object