当前位置: 首页>>代码示例>>C#>>正文


C# ITransport.ReadByte方法代码示例

本文整理汇总了C#中ITransport.ReadByte方法的典型用法代码示例。如果您正苦于以下问题:C# ITransport.ReadByte方法的具体用法?C# ITransport.ReadByte怎么用?C# ITransport.ReadByte使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ITransport的用法示例。


在下文中一共展示了ITransport.ReadByte方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ReadHeader

        public byte ReadHeader(ITransport trans, HeaderParams param, OperationsFactory opFac, HotRodOperation op)
        {
            byte magic = trans.ReadByte(); //Reads magic byte: indicates whether the header is a request or a response

            if (magic != HotRodConstants.RESPONSE_MAGIC)
            {
                String message = "Invalid magic number! Expected " + HotRodConstants.RESPONSE_MAGIC + "received " + magic;
                InvalidResponseException e = new InvalidResponseException(message);
                logger.Warn(e);
                throw e;
            }

            long receivedMessageId = trans.ReadVLong(); //Reads the message ID. Should be similar to the msg ID of the request

            if (receivedMessageId != param.Messageid && receivedMessageId != 0)
            {
                String message = "Invalid Message ID! Expected " + param.Messageid + "received " + receivedMessageId;
                InvalidResponseException e = new InvalidResponseException(message);
                logger.Warn(e);
                throw new InvalidResponseException(message);
            }

            byte receivedOpCode = trans.ReadByte(); //Reads the OP Code

            logger.Trace(String.Format("response code recieved = " + receivedOpCode));
            if (receivedOpCode != param.OpRespCode) //Checks whether the recieved OP code is the corrsponding OPCode for the request sent
            {
                if (receivedOpCode == HotRodConstants.ERROR_RESPONSE) //In case of any error indication by the server
                {
                    logger.Warn(String.Format("Error Response Recieved : " + receivedOpCode));
                    throw new InvalidResponseException("Error Response Recieved");
                }

                logger.Warn(String.Format("Invalid Response Recieved : Expected " + param.OpRespCode + " Recieved " + receivedOpCode));
                throw new InvalidResponseException("Invalid Response Operation.");
            }

            byte status = trans.ReadByte(); //Reads the status
            logger.Trace(String.Format("Status : " + status));

            byte topchange = trans.ReadByte(); //Reads the Topology change byte. Equals 0 for No Change in topology

            logger.Trace(String.Format("Topology change indicator value : " + topchange));

            int newTopology = param.Topologyid;

            if (topchange == 1)
                ReadNewTopologyAndHash(trans, param, opFac, op);

            return status;
        }
开发者ID:sunimalr,项目名称:dotnet-client,代码行数:51,代码来源:Codec.cs

示例2: ExecuteOperation

 public Dictionary<byte[], byte[]> ExecuteOperation(ITransport transport)
 {
     HeaderParams param = WriteHeader(transport, BULK_GET_REQUEST);
     transport.WriteVInt(entryCount);
     transport.Flush();
     ReadHeaderAndValidate(transport, param);
     Dictionary<byte[], byte[]> result = new Dictionary<byte[], byte[]>();
     while (transport.ReadByte() == 1)
     {
         result.Add(transport.ReadArray(), transport.ReadArray());
     }
     return result;
 }
开发者ID:sunimalr,项目名称:dotnet-client,代码行数:13,代码来源:BulkGetOperation.cs


注:本文中的ITransport.ReadByte方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。