コード例 #1
0
ファイル: RequestHeader.cs プロジェクト: htlp/ZooKeeperNet
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Xid, "xid");
     a_.WriteInt(Type, "type");
     a_.EndRecord(this, tag);
 }
コード例 #2
0
ファイル: MultiHeader.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Type,"type");
   a_.WriteBool(Done,"done");
   a_.WriteInt(Err,"err");
   a_.EndRecord(this,tag);
 }
コード例 #3
0
ファイル: WatcherEvent.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Type,"type");
   a_.WriteInt(State,"state");
   a_.WriteString(Path,"path");
   a_.EndRecord(this,tag);
 }
コード例 #4
0
ファイル: ReplyHeader.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Xid,"xid");
   a_.WriteLong(Zxid,"zxid");
   a_.WriteInt(Err,"err");
   a_.EndRecord(this,tag);
 }
コード例 #5
0
ファイル: FileHeader.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Magic,"magic");
   a_.WriteInt(Version,"version");
   a_.WriteLong(Dbid,"dbid");
   a_.EndRecord(this,tag);
 }
コード例 #6
0
ファイル: FileHeader.cs プロジェクト: htlp/ZooKeeperNet
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Magic, "magic");
     a_.WriteInt(Version, "version");
     a_.WriteLong(Dbid, "dbid");
     a_.EndRecord(this, tag);
 }
コード例 #7
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Type, "type");
     a_.WriteBool(Done, "done");
     a_.WriteInt(Err, "err");
     a_.EndRecord(this, tag);
 }
コード例 #8
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(this.Xid, "xid");
     a_.WriteLong(this.Zxid, "zxid");
     a_.WriteInt(this.Err, "err");
     a_.EndRecord(this, tag);
 }
コード例 #9
0
ファイル: MultiHeader.cs プロジェクト: wangyanjun/zookeeper
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord((IRecord)this, tag);
     a_.WriteInt(this.Type, "type");
     a_.WriteBool(this.Done, "done");
     a_.WriteInt(this.Err, "err");
     a_.EndRecord((IRecord)this, tag);
 }
コード例 #10
0
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(ProtocolVersion,"protocolVersion");
   a_.WriteInt(TimeOut,"timeOut");
   a_.WriteLong(SessionId,"sessionId");
   a_.WriteBuffer(Passwd,"passwd");
   a_.EndRecord(this,tag);
 }
コード例 #11
0
ファイル: WatcherEvent.cs プロジェクト: pzdn2009/zookeeper
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Type, "type");
     a_.WriteInt(State, "state");
     a_.WriteString(Path, "path");
     a_.EndRecord(this, tag);
 }
コード例 #12
0
ファイル: op_result_t.cs プロジェクト: Bart-Li/Base
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Rc, "rc");
     a_.WriteInt(Op, "op");
     a_.WriteBuffer(Response, "response");
     a_.EndRecord(this, tag);
 }
コード例 #13
0
ファイル: TxnHeader.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteLong(ClientId,"clientId");
   a_.WriteInt(Cxid,"cxid");
   a_.WriteLong(Zxid,"zxid");
   a_.WriteLong(Time,"time");
   a_.WriteInt(Type,"type");
   a_.EndRecord(this,tag);
 }
コード例 #14
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(ProtocolVersion, "protocolVersion");
     a_.WriteInt(TimeOut, "timeOut");
     a_.WriteLong(SessionId, "sessionId");
     a_.WriteBuffer(Passwd, "passwd");
     a_.EndRecord(this, tag);
 }
コード例 #15
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(this.ProtocolVersion, "protocolVersion");
     a_.WriteLong(this.LastZxidSeen, "lastZxidSeen");
     a_.WriteInt(this.TimeOut, "timeOut");
     a_.WriteLong(this.SessionId, "sessionId");
     a_.WriteBuffer(this.Passwd, "passwd");
     a_.EndRecord(this, tag);
 }
コード例 #16
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord((IRecord)this, tag);
     a_.WriteLong(this.ClientId, "clientId");
     a_.WriteInt(this.Cxid, "cxid");
     a_.WriteLong(this.Zxid, "zxid");
     a_.WriteLong(this.Time, "time");
     a_.WriteInt(this.Type, "type");
     a_.EndRecord((IRecord)this, tag);
 }
コード例 #17
0
ファイル: TxnHeader.cs プロジェクト: Bart-Li/Base
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteLong(ClientId, "clientId");
     a_.WriteInt(Cxid, "cxid");
     a_.WriteLong(Zxid, "zxid");
     a_.WriteLong(Time, "time");
     a_.WriteInt(Type, "type");
     a_.EndRecord(this, tag);
 }
コード例 #18
0
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteLong(Czxid,"czxid");
   a_.WriteLong(Mzxid,"mzxid");
   a_.WriteLong(Ctime,"ctime");
   a_.WriteLong(Mtime,"mtime");
   a_.WriteInt(Version,"version");
   a_.WriteInt(Cversion,"cversion");
   a_.WriteInt(Aversion,"aversion");
   a_.WriteLong(EphemeralOwner,"ephemeralOwner");
   a_.EndRecord(this,tag);
 }
コード例 #19
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteLong(Czxid, "czxid");
     a_.WriteLong(Mzxid, "mzxid");
     a_.WriteLong(Ctime, "ctime");
     a_.WriteLong(Mtime, "mtime");
     a_.WriteInt(Version, "version");
     a_.WriteInt(Cversion, "cversion");
     a_.WriteInt(Aversion, "aversion");
     a_.WriteLong(EphemeralOwner, "ephemeralOwner");
     a_.EndRecord(this, tag);
 }
コード例 #20
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord((IRecord)this, tag);
     a_.WriteLong(this.Czxid, "czxid");
     a_.WriteLong(this.Mzxid, "mzxid");
     a_.WriteLong(this.Ctime, "ctime");
     a_.WriteLong(this.Mtime, "mtime");
     a_.WriteInt(this.Version, "version");
     a_.WriteInt(this.Cversion, "cversion");
     a_.WriteInt(this.Aversion, "aversion");
     a_.WriteLong(this.EphemeralOwner, "ephemeralOwner");
     a_.EndRecord((IRecord)this, tag);
 }
コード例 #21
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(this.Path, "path");
     a_.WriteInt(this.Version, "version");
     a_.EndRecord(this, tag);
 }
コード例 #22
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(Path, "path");
     a_.WriteInt(Max, "max");
     a_.EndRecord(this, tag);
 }
コード例 #23
0
ファイル: SetDataRequest.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteString(Path,"path");
   a_.WriteBuffer(Data,"data");
   a_.WriteInt(Version,"version");
   a_.EndRecord(this,tag);
 }
コード例 #24
0
ファイル: AuthPacket.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Type,"type");
   a_.WriteString(Scheme,"scheme");
   a_.WriteBuffer(Auth,"auth");
   a_.EndRecord(this,tag);
 }
コード例 #25
0
ファイル: ACL.cs プロジェクト: wuyou201400/DotnetSpider
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Perms, "perms");
     a_.WriteRecord(Id, "id");
     a_.EndRecord(this, tag);
 }
コード例 #26
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteLong(this.Czxid, "czxid");
     a_.WriteLong(this.Mzxid, "mzxid");
     a_.WriteLong(this.Ctime, "ctime");
     a_.WriteLong(this.Mtime, "mtime");
     a_.WriteInt(this.Version, "version");
     a_.WriteInt(this.Cversion, "cversion");
     a_.WriteInt(this.Aversion, "aversion");
     a_.WriteLong(this.EphemeralOwner, "ephemeralOwner");
     a_.WriteInt(this.DataLength, "dataLength");
     a_.WriteInt(this.NumChildren, "numChildren");
     a_.WriteLong(this.Pzxid, "pzxid");
     a_.EndRecord(this, tag);
 }
コード例 #27
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteLong(Serverid, "serverid");
     a_.WriteInt(ProtocolVersion, "protocolVersion");
     a_.EndRecord(this, tag);
 }
コード例 #28
0
ファイル: Txn.cs プロジェクト: Bart-Li/Base
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Type, "type");
     a_.WriteBuffer(Data, "data");
     a_.EndRecord(this, tag);
 }
コード例 #29
0
ファイル: AuthPacket.cs プロジェクト: zszqwe/CommonX
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Type, "type");
     a_.WriteString(Scheme, "scheme");
     a_.WriteBuffer(Auth, "auth");
     a_.EndRecord(this, tag);
 }
コード例 #30
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(Path, "path");
     a_.WriteBuffer(Data, "data");
     a_.WriteInt(Version, "version");
     a_.EndRecord(this, tag);
 }
コード例 #31
0
ファイル: SetACLTxn.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteString(Path,"path");
   {
     a_.StartVector(Acl,"acl");
     if (Acl!= null) {          foreach(var e1 in Acl) {
   a_.WriteRecord(e1,"e1");
         }
     }
     a_.EndVector(Acl,"acl");
   }
   a_.WriteInt(Version,"version");
   a_.EndRecord(this,tag);
 }
コード例 #32
0
ファイル: CreateRequest.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteString(Path,"path");
   a_.WriteBuffer(Data,"data");
   {
     a_.StartVector(Acl,"acl");
     if (Acl!= null) {          foreach(var e1 in Acl) {
   a_.WriteRecord(e1,"e1");
         }
     }
     a_.EndVector(Acl,"acl");
   }
   a_.WriteInt(Flags,"flags");
   a_.EndRecord(this,tag);
 }
コード例 #33
0
ファイル: QuorumPacket.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Type,"type");
   a_.WriteLong(Zxid,"zxid");
   a_.WriteBuffer(Data,"data");
   {
     a_.StartVector(Authinfo,"authinfo");
     if (Authinfo!= null) {          foreach(var e1 in Authinfo) {
   a_.WriteRecord(e1,"e1");
         }
     }
     a_.EndVector(Authinfo,"authinfo");
   }
   a_.EndRecord(this,tag);
 }
コード例 #34
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(this.Path, "path");
     a_.StartVector <ACL>(this.Acl, "acl");
     if (this.Acl != null)
     {
         foreach (ACL acl in this.Acl)
         {
             a_.WriteRecord(acl, "e1");
         }
     }
     a_.EndVector <ACL>(this.Acl, "acl");
     a_.WriteInt(this.Version, "version");
     a_.EndRecord(this, tag);
 }
コード例 #35
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord((IRecord)this, tag);
     a_.WriteInt(this.Type, "type");
     a_.WriteLong(this.Zxid, "zxid");
     a_.WriteBuffer(this.Data, "data");
     a_.StartVector <ZKId>(this.Authinfo, "authinfo");
     if (this.Authinfo != null)
     {
         foreach (ZKId zkId in this.Authinfo)
         {
             a_.WriteRecord((IRecord)zkId, "e1");
         }
     }
     a_.EndVector <ZKId>(this.Authinfo, "authinfo");
     a_.EndRecord((IRecord)this, tag);
 }
コード例 #36
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(this.Path, "path");
     a_.WriteBuffer(this.Data, "data");
     a_.StartVector <ACL>(this.Acl, "acl");
     if (this.Acl != null)
     {
         foreach (ACL acl in this.Acl)
         {
             a_.WriteRecord(acl, "e1");
         }
     }
     a_.EndVector <ACL>(this.Acl, "acl");
     a_.WriteInt(this.Flags, "flags");
     a_.EndRecord(this, tag);
 }
コード例 #37
0
 public void Serialize(IOutputArchive a_, string tag)
 {
     a_.StartRecord((IRecord)this, tag);
     a_.WriteString(this.Path, "path");
     a_.WriteBuffer(this.Data, "data");
     a_.StartVector <ACL>(this.Acl, "acl");
     if (this.Acl != null)
     {
         foreach (ACL acl in this.Acl)
         {
             a_.WriteRecord((IRecord)acl, "e1");
         }
     }
     a_.EndVector <ACL>(this.Acl, "acl");
     a_.WriteBool(this.Ephemeral, "ephemeral");
     a_.WriteInt(this.ParentCVersion, "parentCVersion");
     a_.EndRecord((IRecord)this, tag);
 }
コード例 #38
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(Path, "path");
     {
         a_.StartVector(Acl, "acl");
         if (Acl != null)
         {
             foreach (var e1 in Acl)
             {
                 a_.WriteRecord(e1, "e1");
             }
         }
         a_.EndVector(Acl, "acl");
     }
     a_.WriteInt(Version, "version");
     a_.EndRecord(this, tag);
 }
コード例 #39
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteString(Path, "path");
     a_.WriteBuffer(Data, "data");
     {
         a_.StartVector(Acl, "acl");
         if (Acl != null)
         {
             foreach (var e1 in Acl)
             {
                 a_.WriteRecord(e1, "e1");
             }
         }
         a_.EndVector(Acl, "acl");
     }
     a_.WriteInt(Flags, "flags");
     a_.EndRecord(this, tag);
 }
コード例 #40
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Type, "type");
     a_.WriteLong(Zxid, "zxid");
     a_.WriteBuffer(Data, "data");
     {
         a_.StartVector(Authinfo, "authinfo");
         if (Authinfo != null)
         {
             foreach (var e1 in Authinfo)
             {
                 a_.WriteRecord(e1, "e1");
             }
         }
         a_.EndVector(Authinfo, "authinfo");
     }
     a_.EndRecord(this, tag);
 }
コード例 #41
0
ファイル: LearnerInfo.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteLong(Serverid,"serverid");
   a_.WriteInt(ProtocolVersion,"protocolVersion");
   a_.EndRecord(this,tag);
 }
コード例 #42
0
ファイル: Txn.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Type,"type");
   a_.WriteBuffer(Data,"data");
   a_.EndRecord(this,tag);
 }
コード例 #43
0
ファイル: ACL.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Perms,"perms");
   a_.WriteRecord(Id,"id");
   a_.EndRecord(this,tag);
 }
コード例 #44
0
ファイル: RequestHeader.cs プロジェクト: CMTelecom/kafka-net
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Xid,"xid");
   a_.WriteInt(Type,"type");
   a_.EndRecord(this,tag);
 }
コード例 #45
0
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(TimeOut,"timeOut");
   a_.EndRecord(this,tag);
 }
コード例 #46
0
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(TimeOut, "timeOut");
     a_.EndRecord(this, tag);
 }
コード例 #47
0
 public void Serialize(IOutputArchive a_, String tag) {
   a_.StartRecord(this,tag);
   a_.WriteInt(Max,"max");
   a_.EndRecord(this,tag);
 }
コード例 #48
0
ファイル: ErrorTxn.cs プロジェクト: wuyou201400/DotnetSpider
 public void Serialize(IOutputArchive a_, String tag)
 {
     a_.StartRecord(this, tag);
     a_.WriteInt(Err, "err");
     a_.EndRecord(this, tag);
 }