| java.lang.Object org.continuent.sequoia.controller.virtualdatabase.protocol.DistributedVirtualDatabaseMessage org.continuent.sequoia.controller.virtualdatabase.protocol.CompleteRecoveryLogResync
Constructor Summary | |
public | CompleteRecoveryLogResync(long commonCheckpointId, String nowCheckpointName, long nbOfEntriesToResync) Creates a new CompleteRecoveryLogResync object. | public | CompleteRecoveryLogResync(String commonCheckpointName, String nowCheckpointName, long nbOfEntriesToResync) Creates a new CompleteRecoveryLogResync object
It will be used there to check that the automatic resync of recovery logs
worked well, by verifying that the number of log entries that has been
transfered is the expected one (nbOfEntriesToResync) between the two log
entries identified by commonCheckpointName and nowCheckpointName. |
CompleteRecoveryLogResync | public CompleteRecoveryLogResync(long commonCheckpointId, String nowCheckpointName, long nbOfEntriesToResync)(Code) | | Creates a new CompleteRecoveryLogResync object.
This object will be used to check that the restore log operation did not
generate any inconcistency (by checking that the number of copied log
entries from commonCheckpointId to the log id corresponding to
nowCheckpointName is equal to nbOfEntriesToResync)
Parameters: commonCheckpointId - common checkpoint id where resync will start Parameters: nowCheckpointName - newly inserted checkpoint where resync will end Parameters: nbOfEntriesToResync - number of entries to be resynchronized betweenthese 2 checkpoints |
CompleteRecoveryLogResync | public CompleteRecoveryLogResync(String commonCheckpointName, String nowCheckpointName, long nbOfEntriesToResync)(Code) | | Creates a new CompleteRecoveryLogResync object
It will be used there to check that the automatic resync of recovery logs
worked well, by verifying that the number of log entries that has been
transfered is the expected one (nbOfEntriesToResync) between the two log
entries identified by commonCheckpointName and nowCheckpointName.
Parameters: commonCheckpointName - common checkpoint name where resync will start Parameters: nowCheckpointName - newly inserted checkpoint where resync will end Parameters: nbOfEntriesToResync - number of entries to be resynchronized betweenthese 2 checkpoints |
|
|