StateKey

data class StateKey(val id: Long, val partitionKeys: List<PartitionKey>) : Comparable<StateKey>

A state generally refers to a single partition but can refer to many (namely, in CDC)

Constructors

Link copied to clipboard
constructor(id: Long, partitionKeys: List<PartitionKey>)

Properties

Link copied to clipboard
val id: Long
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun compareTo(other: StateKey): Int