Class KafkaProducerRecord<K,​V>


  • public class KafkaProducerRecord<K,​V>
    extends Object
    Vert.x Kafka producer record.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • 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 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

        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 to
        key - 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 to
        value - 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​(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