Uses of Interface
com.continuent.tungsten.replicator.consistency.ConsistencyCheck

Packages that use ConsistencyCheck
com.continuent.tungsten.replicator.consistency   
com.continuent.tungsten.replicator.database   
 

Uses of ConsistencyCheck in com.continuent.tungsten.replicator.consistency
 

Classes in com.continuent.tungsten.replicator.consistency that implement ConsistencyCheck
 class ConsistencyCheckAbstract
          This class defines a ConsistencyCheckAbstract
 class ConsistencyCheckMD5
          This class defines a ConsistencyCheckMD5
 

Methods in com.continuent.tungsten.replicator.consistency that return ConsistencyCheck
static ConsistencyCheck ConsistencyCheckFactory.createConsistencyCheck(int id, Table table, int rowOffset, int rowLimit, java.lang.String method, boolean checkColumnNames, boolean checkColumnTypes)
           
static ConsistencyCheck ConsistencyCheckAbstract.deserialize(byte[] bytes)
           
 

Uses of ConsistencyCheck in com.continuent.tungsten.replicator.database
 

Methods in com.continuent.tungsten.replicator.database with parameters of type ConsistencyCheck
 void AbstractDatabase.consistencyCheck(Table ct, ConsistencyCheck cc)
          Runs consistency check transaction
 void Database.consistencyCheck(Table ct, ConsistencyCheck cc)
          Runs consistency check transaction
 void AbstractDatabase.consistencyCheck(Table ct, ConsistencyCheck cc, java.lang.String masterCrc, int masterCnt)
          Runs consistency check transaction:
a.) If masterCrc==null - normal (master side) consistency check is executed, which is expected to be replicated to the slaves by replication.
b.) If masterCrc!=null, then masterCrc and masterCnt are put into corresponding columns, while executed check's results are put into this_crc and this_cnt columns.
 void Database.consistencyCheck(Table ct, ConsistencyCheck cc, java.lang.String masterCrc, int masterCnt)
          Runs consistency check transaction:
a.) If masterCrc==null - normal (master side) consistency check is executed, which is expected to be replicated to the slaves by replication.
b.) If masterCrc!=null, then masterCrc and masterCnt are put into corresponding columns, while executed check's results are put into this_crc and this_cnt columns.