Exemplo n.º 1
0
        internal GetCompactTypesCommand(bool isAsync)
        {
            base.name    = "GetCompactTypesCommand";
            base.isAsync = isAsync;

            _getCompactTypesCommand                = new Alachisoft.NCache.Common.Protobuf.GetCompactTypesCommand();
            _getCompactTypesCommand.requestId      = base.RequestId;
            _getCompactTypesCommand.isDotnetClient = true;
        }
Exemplo n.º 2
0
        private CommandInfo ParseCommand(Alachisoft.NCache.Common.Protobuf.Command command, ClientManager clientManager)
        {
            CommandInfo cmdInfo = new CommandInfo();

            Alachisoft.NCache.Common.Protobuf.GetCompactTypesCommand getCompactTypesCommand = command.getCompactTypesCommand;

            cmdInfo.RequestId      = getCompactTypesCommand.requestId.ToString();
            cmdInfo.isDotNetClient = getCompactTypesCommand.isDotnetClient;

            return(cmdInfo);
        }