* it's clear who is on the other end.
*/
Thread.currentThread().setName("Feeder Input for " +
replicaNameIdPair.getName());
FeederReplicaSyncup syncup =
new FeederReplicaSyncup(Feeder.this,
feederReplicaChannel,
protocol);
/*
* The replicaCBVLSN can only be instantiated after we know the
* replica's name. We need to pass the updater into
* FeederReplicaSyncup so that the replica's local CBVLSN can
* be updated while the global CBVLSN update is locked out.
*/
this.replicaCBVLSN = new LocalCBVLSNUpdater(replicaNameIdPair,
repNode);
feederVLSN = syncup.execute(replicaCBVLSN);
feederSource.init(feederVLSN);
/* Start the thread to pump out log records */
outputThread.start();
lastResponseTime = System.currentTimeMillis();