Uses of Interface
io.debezium.connector.binlog.gtid.GtidSet
Packages that use GtidSet
Package
Description
-
Uses of GtidSet in io.debezium.connector.binlog
Methods in io.debezium.connector.binlog with parameters of type GtidSetModifier and TypeMethodDescriptionabstract voidBinlogReadOnlyIncrementalSnapshotContext.setHighWatermark(GtidSet gtidSet) Set the GTID as the high watermark.abstract voidBinlogReadOnlyIncrementalSnapshotContext.setLowWatermark(GtidSet gtidSet) Set the GTID as the low watermark.Method parameters in io.debezium.connector.binlog with type arguments of type GtidSetModifier and TypeMethodDescriptionprotected abstract voidBinlogReadOnlyIncrementalSnapshotChangeEventSource.getExecutedGtidSet(Consumer<GtidSet> watermark) -
Uses of GtidSet in io.debezium.connector.binlog.gtid
Methods in io.debezium.connector.binlog.gtid that return GtidSetModifier and TypeMethodDescriptionGtidSetFactory.createGtidSet(String gtid) Constructs aGtidSetfrom a string value.Obtain a copy of theGtidSet, except with only the GTIDs that are permitted based on the supplied predicatefilter.Subtracts the two global transaction identifier sets.Creates a newGtidSetthat contains all global transaction identifiers in this set with those from the supplied other set.Methods in io.debezium.connector.binlog.gtid with parameters of type GtidSetModifier and TypeMethodDescriptionbooleanGtidSet.isContainedWithin(GtidSet other) Checks whether all GTIDs represented bythisset are contained within the supplied set.Subtracts the two global transaction identifier sets.Creates a newGtidSetthat contains all global transaction identifiers in this set with those from the supplied other set. -
Uses of GtidSet in io.debezium.connector.binlog.jdbc
Methods in io.debezium.connector.binlog.jdbc that return GtidSetModifier and TypeMethodDescriptionabstract GtidSetBinlogConnectorConnection.filterGtidSet(Predicate<String> gtidSourceFilter, String offsetGtids, GtidSet availableServerGtidSet, GtidSet purgedServerGtidSet) Apply the include/exclude GTID source filters to the current offset's GTID set and merge them onto the currently available GTID set from the database server.abstract GtidSetBinlogConnectorConnection.knownGtidSet()Returns the most recent executed GTID set or position.abstract GtidSetBinlogConnectorConnection.purgedGtidSet()Get the purged GTID values from the server.abstract GtidSetBinlogConnectorConnection.subtractGtidSet(GtidSet set1, GtidSet set2) Determines the difference between two GTID sets.Methods in io.debezium.connector.binlog.jdbc with parameters of type GtidSetModifier and TypeMethodDescriptionabstract GtidSetBinlogConnectorConnection.filterGtidSet(Predicate<String> gtidSourceFilter, String offsetGtids, GtidSet availableServerGtidSet, GtidSet purgedServerGtidSet) Apply the include/exclude GTID source filters to the current offset's GTID set and merge them onto the currently available GTID set from the database server.abstract GtidSetBinlogConnectorConnection.subtractGtidSet(GtidSet set1, GtidSet set2) Determines the difference between two GTID sets.