Package io.debezium.connector.postgresql.spi


package io.debezium.connector.postgresql.spi
  • Class
    Description
    A simple data container that represents the last seen offset which was written by debezium.
    A simple data container representing the creation of a newly created replication slot.
    A simple data container that holds the state of the current slot
    This interface is used to determine details about the snapshot process: Namely: - Should a snapshot occur at all - Should streaming occur - What queries should be used to snapshot While many default snapshot modes are provided with debezium (see documentation for details) a custom implementation of this interface can be provided by the implementor which can provide more advanced functionality, such as partial snapshots Implementor's must return true for either Snapshotter.shouldSnapshot() or Snapshotter.shouldStream() or true for both.