Uses of Class
io.debezium.connector.oracle.logminer.TransactionalBuffer.LogMinerEvent
-
Packages that use TransactionalBuffer.LogMinerEvent Package Description io.debezium.connector.oracle.logminer -
-
Uses of TransactionalBuffer.LogMinerEvent in io.debezium.connector.oracle.logminer
Subclasses of TransactionalBuffer.LogMinerEvent in io.debezium.connector.oracle.logminer Modifier and Type Class Description private static classTransactionalBuffer.DmlEventRepresents a DML event for a given table row.private static classTransactionalBuffer.LobEraseEventRepresents a LOB_ERASE eventprivate static classTransactionalBuffer.LobWriteEventRepresents a LOB_WRITE eventprivate static classTransactionalBuffer.SelectLobLocatorEventRepresents a SELECT_LOB_LOCATOR eventFields in io.debezium.connector.oracle.logminer with type parameters of type TransactionalBuffer.LogMinerEvent Modifier and Type Field Description private List<TransactionalBuffer.LogMinerEvent>TransactionalBuffer.Transaction. eventsMethods in io.debezium.connector.oracle.logminer with parameters of type TransactionalBuffer.LogMinerEvent Modifier and Type Method Description private booleanTransactionalBuffer. isForSameTableOrScn(TransactionalBuffer.LogMinerEvent event, TransactionalBuffer.LogMinerEvent prevEvent)Checks whether the two events are for the same table or participate in the same system change.private booleanTransactionalBuffer. isSameTableRow(TransactionalBuffer.LogMinerEvent event, TransactionalBuffer.LogMinerEvent prevEvent)Checks whether the two events are for the same table row.private voidTransactionalBuffer. mergeNewColumns(TransactionalBuffer.LogMinerEvent event, TransactionalBuffer.LogMinerEvent prevEvent)Merge column values fromeventwithprevEvent.private booleanTransactionalBuffer. shouldMergeDmlEvent(TransactionalBuffer.Transaction transaction, int index, TransactionalBuffer.DmlEvent event, TransactionalBuffer.LogMinerEvent prevEvent)Attempts to merge the provided DML event with the previous event in the transaction.private booleanTransactionalBuffer. shouldMergeSelectLobLocatorEvent(TransactionalBuffer.Transaction transaction, int index, TransactionalBuffer.SelectLobLocatorEvent event, TransactionalBuffer.LogMinerEvent prevEvent)Attempts to merge the provided SEL_LOB_LOCATOR event with the previous event in the transaction.Method parameters in io.debezium.connector.oracle.logminer with type arguments of type TransactionalBuffer.LogMinerEvent Modifier and Type Method Description private voidTransactionalBuffer. registerEvent(String transactionId, Scn scn, long hash, Supplier<TransactionalBuffer.LogMinerEvent> supplier)Helper method to register a givenTransactionalBuffer.LogMinerEventimplementation with the buffer.
-