Ejemplo n.º 1
0
 /// <summary>
 /// 反序列化
 /// </summary>
 /// <param name="formatter"></param>
 public void Read(Utils.IFormatter formatter)
 {
     this.ProtocolVersion = formatter.ReadInt32();
     this.SessionTimeOut = formatter.ReadInt32();
     this.SessionID = formatter.ReadInt64();
     this.SessionPassword = formatter.ReadBuffer();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// read
 /// </summary>
 /// <param name="formatter"></param>
 public void Read(Utils.IFormatter formatter)
 {
     this.Czxid = formatter.ReadInt64();
     this.Mzxid = formatter.ReadInt64();
     this.Ctime = formatter.ReadInt64();
     this.Mtime = formatter.ReadInt64();
     this.Version = formatter.ReadInt32();
     this.Cversion = formatter.ReadInt32();
     this.Aversion = formatter.ReadInt32();
     this.EphemeralOwner = formatter.ReadInt64();
     this.DataLength = formatter.ReadInt32();
     this.NumChildren = formatter.ReadInt32();
     this.Pzxid = formatter.ReadInt64();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// 反序列化
 /// </summary>
 /// <param name="formatter"></param>
 public void Read(Utils.IFormatter formatter)
 {
     this.Type = (EventType)formatter.ReadInt32();
     this.State = (KeeperState)formatter.ReadInt32();
     this.Path = formatter.ReadString();
 }