Uses of Interface
io.debezium.connector.mysql.legacy.Reader
-
Packages that use Reader Package Description io.debezium.connector.mysql.legacy -
-
Uses of Reader in io.debezium.connector.mysql.legacy
Classes in io.debezium.connector.mysql.legacy that implement Reader Modifier and Type Class Description classAbstractReaderA component that performs a snapshot of a MySQL server, and records the schema changes inMySqlSchema.classBinlogReaderA component that reads the binlog of a MySQL server, and records any schema changes inMySqlSchema.classBlockingReaderA component that blocks doing nothing until the connector task is stoppedclassChainedReaderclassParallelSnapshotReaderA reader that runs aChainedReaderconsisting of aSnapshotReaderand aBinlogReaderfor all tables newly added to the config in parallel with aBinlogReaderfor all the tables previously in the config.classReconcilingBinlogReaderA reader that unifies the binlog positions of two binlog readers.classSnapshotReaderA component that performs a snapshot of a MySQL server, and records the schema changes inMySqlSchema.classTimedBlockingReaderA component that blocks doing nothing for a specified period of time or until the connector task is stoppedFields in io.debezium.connector.mysql.legacy with type parameters of type Reader Modifier and Type Field Description private AtomicReference<Reader>ChainedReader. currentReaderprivate List<Reader>ChainedReader.Builder. readersprivate List<Reader>ChainedReader. readersprivate LinkedList<Reader>ChainedReader. remainingReadersMethods in io.debezium.connector.mysql.legacy with parameters of type Reader Modifier and Type Method Description ChainedReader.BuilderChainedReader.Builder. addReader(Reader reader)Constructor parameters in io.debezium.connector.mysql.legacy with type arguments of type Reader Constructor Description ChainedReader(List<Reader> readers, String completionMessage)Create a new chained reader.
-