use of com.ms.silverking.cloud.dht.net.ProtoSetConvergenceStateMessageGroup in project SilverKing by Morgan-Stanley.
the class CentralConvergenceController method sendSetState.
private UUIDBase sendSetState(UUIDBase uuid, IPAndPort replica, RingState ringState) {
MessageGroup mg;
mg = new ProtoSetConvergenceStateMessageGroup(uuid, mgBase.getMyID(), setStateDeadlineRelativeMillis, curCP, targetCP, ringState).toMessageGroup();
mgBase.send(mg, replica);
return uuid;
}
Aggregations