logger.debug("Set local {}", info);
sender.handshake();
oort.addCometListener(this);
BayeuxServer bayeuxServer = oort.getBayeuxServer();
ServerChannel channel = bayeuxServer.createChannelIfAbsent(channelName, this).getReference();
channel.addListener(messageListener);
oort.observeChannel(channelName);
// Notify other nodes of our initial value.
// Must be done after registering listeners, to avoid missing responses from other nodes.
channel.publish(getLocalSession(), info);
if (logger.isDebugEnabled())
logger.debug("{} started", this);
}