use of com.ms.silverking.cloud.dht.net.ProtoNopMessageGroup in project SilverKing by Morgan-Stanley.
the class MessageModule method establishConnections.
private void establishConnections() {
for (IPAndPort replica : ringMaster.getAllCurrentReplicaServers()) {
ProtoNopMessageGroup nop;
nop = new ProtoNopMessageGroup(mgBase.getMyID());
Log.warning("Priming: ", replica);
mgBase.send(nop.toMessageGroup(), replica);
}
}
Aggregations