ChangeRecord

data class ChangeRecord(topic: String, key: String, value: ByteArray?)

Representing a change record object. Probably a debezium based record

Parameters

topic

: The topic that was used

key

: The unparsed string key. For fp internals, it is string based, for kafka connect json based.

value

: The raw message contents

Constructors

ChangeRecord
Link copied to clipboard
fun ChangeRecord(topic: String, key: String, value: ByteArray?)
: The topic that was used

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int

Properties

key
Link copied to clipboard
val key: String
: The unparsed string key.
topic
Link copied to clipboard
val topic: String
: The topic that was used
value
Link copied to clipboard
val value: ByteArray?
: The raw message contents