Uses of Class
com.continuent.tungsten.replicator.event.DBMSEvent

Packages that use DBMSEvent
com.continuent.tungsten.replicator.applier   
com.continuent.tungsten.replicator.applier.batch   
com.continuent.tungsten.replicator.event   
com.continuent.tungsten.replicator.extractor   
com.continuent.tungsten.replicator.extractor.mysql   
com.continuent.tungsten.replicator.extractor.oracle   
com.continuent.tungsten.replicator.extractor.postgresql   
com.continuent.tungsten.replicator.loader   
com.continuent.tungsten.replicator.prefetch   
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.applier
 

Methods in com.continuent.tungsten.replicator.applier with parameters of type DBMSEvent
 void MongoApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Applies row updates to MongoDB.
 void JdbcApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Apply the proffered event to the replication target.
 void JdbcPrefetcher.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Apply the proffered event to the replication target.
 void DummyApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Apply the proffered event to the replication target.
 void RawApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Apply the proffered event to the replication target.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.applier.batch
 

Methods in com.continuent.tungsten.replicator.applier.batch with parameters of type DBMSEvent
 void SimpleBatchApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Applies row updates using a batch loading scheme.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.event
 

Subclasses of DBMSEvent in com.continuent.tungsten.replicator.event
 class DBMSEmptyEvent
          This class defines a DBMSEmptyEvent
 

Methods in com.continuent.tungsten.replicator.event that return DBMSEvent
 DBMSEvent ReplDBMSEvent.getDBMSEvent()
          Returns the raw DBMS event containing SQL data.
 

Constructors in com.continuent.tungsten.replicator.event with parameters of type DBMSEvent
ReplDBMSEvent(long seqno, DBMSEvent event)
          Short constructor.
ReplDBMSEvent(long seqno, short fragno, boolean lastFrag, java.lang.String sourceId, long epochNumber, java.sql.Timestamp extractedTstamp, DBMSEvent event)
          Construct a new replication event.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.extractor
 

Methods in com.continuent.tungsten.replicator.extractor that return DBMSEvent
 DBMSEvent DummyExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent RawExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent DummyExtractor.extract(java.lang.String trxId)
          Extract starting after the event ID provided as an argument.
 DBMSEvent RawExtractor.extract(java.lang.String eventId)
          Extract starting after the event ID provided as an argument.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.extractor.mysql
 

Methods in com.continuent.tungsten.replicator.extractor.mysql that return DBMSEvent
 DBMSEvent MySQLExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent MySQLExtractor.extract(java.lang.String id)
          Extract starting after the event ID provided as an argument.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.extractor.oracle
 

Methods in com.continuent.tungsten.replicator.extractor.oracle that return DBMSEvent
 DBMSEvent OracleCDCReaderExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent OracleCDCExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent OracleExtractor.extract()
          Extract the next available DBMSEvent from the database log.
 DBMSEvent OracleCDCReaderExtractor.extract(java.lang.String eventId)
          Extract starting after the event ID provided as an argument.
 DBMSEvent OracleCDCExtractor.extract(java.lang.String eventId)
          Extract starting after the event ID provided as an argument.
 DBMSEvent OracleExtractor.extract(java.lang.String id)
          Extract starting after the event ID provided as an argument.
protected  DBMSEvent OracleExtractor.extractEventRowLevel(java.lang.String firstData)
          Return the next row level event from received from dslisten.
protected  DBMSEvent OracleExtractor.extractEventStatementLevel(java.lang.String firstData)
          Return the next statement extracted from dslisten
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.extractor.postgresql
 

Methods in com.continuent.tungsten.replicator.extractor.postgresql that return DBMSEvent
 DBMSEvent PostgreSQLSlonyExtractor.extract()
          Extracts the next event.

Extract the next available DBMSEvent from the database log.
 DBMSEvent PostgreSQLSlonyExtractor.extract(java.lang.String eventId)
          Extract starting after the event ID provided as an argument.
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.loader
 

Methods in com.continuent.tungsten.replicator.loader that return DBMSEvent
 DBMSEvent JdbcLoader.extract()
          Extract a THL event up to getChunkSize() rows Extract the next available DBMSEvent from the database log.
 DBMSEvent CSVLoader.extract()
          Extract the next available DBMSEvent from the CSV file
 DBMSEvent JdbcLoader.extract(java.lang.String eventId)
           
 DBMSEvent CSVLoader.extract(java.lang.String eventId)
          Extract starting after the event ID provided as an argument.
protected  DBMSEvent Loader.getFinishLoadEvent()
          Build an event that includes the heartbeat name to indicate that all data has been extracted
 

Uses of DBMSEvent in com.continuent.tungsten.replicator.prefetch
 

Methods in com.continuent.tungsten.replicator.prefetch with parameters of type DBMSEvent
 void PrefetchApplier.apply(DBMSEvent event, ReplDBMSHeader header, boolean doCommit, boolean doRollback)
          Apply the proffered event to the replication target.