Class Envelope.FieldName

java.lang.Object
io.debezium.data.Envelope.FieldName
Enclosing class:
Envelope

public static final class Envelope.FieldName extends Object
The constants for the names of the fields in the message envelope.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The after field is used to store the state of a record after an operation.
    static final String
    The before field is used to store the state of a record before an operation.
    static final String
    The op field is used to store the kind of operation on a record.
    static final String
    The origin field is used to store the information about the source of a record, including the Kafka Connect partition and offset information.
    static final String
    The ts_ms field is used to store the information about the local time at which the connector processed/generated the event.
    static final String
    The optional metadata information associated with transaction - like transaction id.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • BEFORE

      public static final String BEFORE
      The before field is used to store the state of a record before an operation.
      See Also:
    • AFTER

      public static final String AFTER
      The after field is used to store the state of a record after an operation.
      See Also:
    • OPERATION

      public static final String OPERATION
      The op field is used to store the kind of operation on a record.
      See Also:
    • SOURCE

      public static final String SOURCE
      The origin field is used to store the information about the source of a record, including the Kafka Connect partition and offset information.
      See Also:
    • TRANSACTION

      public static final String TRANSACTION
      The optional metadata information associated with transaction - like transaction id.
      See Also:
    • TIMESTAMP

      public static final String TIMESTAMP
      The ts_ms field is used to store the information about the local time at which the connector processed/generated the event. The timestamp values are the number of milliseconds past epoch (January 1, 1970), and determined by the JVM current time in milliseconds. Note that the accuracy of the timestamp value depends on the JVM's system clock and all of its assumptions, limitations, conditions, and variations.
      See Also:
  • Constructor Details

    • FieldName

      public FieldName()