예제 #1
0
 public UnRegisterCQCommand(string serverUniqueId, string clientUniqueId, int methodOverload)
 {
     base.name       = "UnRegisterCQCommand";
     _methodOverload = methodOverload;
     _unregCQCommand = new Common.Protobuf.UnRegisterCQCommand();
     _unregCQCommand.serverUniqueId = serverUniqueId;
     _unregCQCommand.clientUniqueId = clientUniqueId;
 }
예제 #2
0
        protected CommandInfo ParseCommand(Alachisoft.NCache.Common.Protobuf.Command command, ClientManager clientManager)
        {
            CommandInfo cmdInfo = new CommandInfo();

            Alachisoft.NCache.Common.Protobuf.UnRegisterCQCommand unRegCQCommand = command.unRegisterCQCommand;

            cmdInfo.RequestId      = unRegCQCommand.requestId.ToString();
            cmdInfo.serverUniqueId = unRegCQCommand.serverUniqueId;
            cmdInfo.clientUniqueId = unRegCQCommand.clientUniqueId;

            return(cmdInfo);
        }