Exemple #1
0
        internal CountCommand()
        {
            base.name = "CountCommand";

            _countCommand = new Alachisoft.NCache.Common.Protobuf.CountCommand();
            _countCommand.requestId = base.RequestId;
        }
Exemple #2
0
        internal CountCommand()
        {
            base.name = "CountCommand";

            _countCommand           = new Alachisoft.NCache.Common.Protobuf.CountCommand();
            _countCommand.requestId = base.RequestId;
        }
Exemple #3
0
        //PROTOBUF
        private CommandInfo ParseCommand(Alachisoft.NCache.Common.Protobuf.Command command, ClientManager clientManager)
        {
            CommandInfo cmdInfo = new CommandInfo();

            Alachisoft.NCache.Common.Protobuf.CountCommand countCommand = command.countCommand;

            cmdInfo.RequestId = countCommand.requestId.ToString();

            return(cmdInfo);
        }