Packages

package debezium

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait DebeziumCompositeType[A] extends AnyRef

    An interface for turning product types into a "struct" representation for the Debezium schema type.

    An interface for turning product types into a "struct" representation for the Debezium schema type. The schema abstract method should represent all the fields of the product type A.

  2. trait DebeziumPrimitiveType[A] extends AnyRef

    A typeclass for turning types into a primitive representation for the Debezium schema type.

    A typeclass for turning types into a primitive representation for the Debezium schema type. For reference check here: https://debezium.io/documentation/reference/1.2/connectors/postgresql.html#postgresql-data-types

  3. case class DebeziumTable[K, V](topicName: String, idNameOrKeySchema: Either[(String, DebeziumPrimitiveType[K]), DebeziumCompositeType[K]], toCirceTable: CirceTable[DebeziumKey[K], V])(implicit evidence$1: Encoder[K], evidence$2: Decoder[K], evidence$3: Encoder[V], evidence$4: Decoder[V]) extends Product with Serializable

Ungrouped