Example #1
0
 public void send_get_partitions(string db_name, string tbl_name, short max_parts)
 {
     oprot_.WriteMessageBegin(new TMessage("get_partitions", TMessageType.Call, seqid_));
     get_partitions_args args = new get_partitions_args();
     args.Db_name = db_name;
     args.Tbl_name = tbl_name;
     args.Max_parts = max_parts;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }
Example #2
0
 public void get_partitions_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     get_partitions_args args = new get_partitions_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     get_partitions_result result = new get_partitions_result();
     try
     {
         result.Success = iface_.get_partitions(args.Db_name, args.Tbl_name, args.Max_parts);
     }
     catch (NoSuchObjectException o1)
     {
         result.O1 = o1;
     }
     catch (MetaException o2)
     {
         result.O2 = o2;
     }
     oprot.WriteMessageBegin(new TMessage("get_partitions", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }