use of com.ms.silverking.cloud.dht.daemon.MessageModule.MessageAndConnection in project SilverKing by Morgan-Stanley.
the class MessageGroupConnectionProxyLocal method sendAsynchronous.
@Override
public void sendAsynchronous(Object data, long deadline) throws IOException {
MessageAndConnection messageAndConnection;
// Log.warning("MessageGroupConnectionProxyLocal sending");
messageAndConnection = new MessageAndConnection((MessageGroup) data, this);
worker.addWork(messageAndConnection);
}
Aggregations