use of com.ms.silverking.cloud.dht.net.ProtoNamespaceRequestMessageGroup in project SilverKing by Morgan-Stanley.
the class NamespaceRequest method sendNamespaceRequest.
private void sendNamespaceRequest(IPAndPort dest) {
ProtoNamespaceRequestMessageGroup protoMG;
if (debug) {
Log.warning("Requesting namespaces from: ", dest);
}
protoMG = new ProtoNamespaceRequestMessageGroup(new UUIDBase(), mgBase.getMyID());
nsRequests.put(protoMG.getUUID(), this);
mgBase.send(protoMG.toMessageGroup(), dest);
}
use of com.ms.silverking.cloud.dht.net.ProtoNamespaceRequestMessageGroup in project SilverKing by Morgan-Stanley.
the class NamespaceRequest method sendNamespaceRequest.
private void sendNamespaceRequest(IPAndPort dest) {
ProtoNamespaceRequestMessageGroup protoMG;
if (debug) {
Log.warning("Requesting namespaces from: ", dest);
}
protoMG = new ProtoNamespaceRequestMessageGroup(new UUIDBase(), mgBase.getMyID());
nsRequests.put(protoMG.getUUID(), this);
mgBase.send(protoMG.toMessageGroup(), dest);
}
Aggregations