예제 #1
0
 public void send_get_partitions_with_auth(string db_name, string tbl_name, short max_parts, string user_name, List<string> group_names)
 {
     oprot_.WriteMessageBegin(new TMessage("get_partitions_with_auth", TMessageType.Call, seqid_));
     get_partitions_with_auth_args args = new get_partitions_with_auth_args();
     args.Db_name = db_name;
     args.Tbl_name = tbl_name;
     args.Max_parts = max_parts;
     args.User_name = user_name;
     args.Group_names = group_names;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }
예제 #2
0
 public void get_partitions_with_auth_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     get_partitions_with_auth_args args = new get_partitions_with_auth_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     get_partitions_with_auth_result result = new get_partitions_with_auth_result();
     try
     {
         result.Success = iface_.get_partitions_with_auth(args.Db_name, args.Tbl_name, args.Max_parts, args.User_name, args.Group_names);
     }
     catch (NoSuchObjectException o1)
     {
         result.O1 = o1;
     }
     catch (MetaException o2)
     {
         result.O2 = o2;
     }
     oprot.WriteMessageBegin(new TMessage("get_partitions_with_auth", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }