public void send_exists(Pathname path)
 {
     oprot_.WriteMessageBegin(new TMessage("exists", TMessageType.Call, seqid_));
     exists_args args = new exists_args();
     args.Path = path;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }
Beispiel #2
0
 public void send_exists(byte[] table, TGet get)
 {
     oprot_.WriteMessageBegin(new TMessage("exists", TMessageType.Call, seqid_));
     exists_args args = new exists_args();
     args.Table = table;
     args.Get = get;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }