コード例 #1
0
ファイル: ThriftHive.cs プロジェクト: zbw911/CS4Hadoop
 public void fetchAll_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     fetchAll_args args = new fetchAll_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     fetchAll_result result = new fetchAll_result();
     try
     {
         result.Success = iface_.fetchAll();
     }
     catch (HiveServerException ex)
     {
         result.Ex = ex;
     }
     oprot.WriteMessageBegin(new TMessage("fetchAll", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
コード例 #2
0
ファイル: ThriftHive.cs プロジェクト: zbw911/CS4Hadoop
 public List<string> recv_fetchAll()
 {
     TMessage msg = iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception)
     {
         TApplicationException x = TApplicationException.Read(iprot_);
         iprot_.ReadMessageEnd();
         throw x;
     }
     fetchAll_result result = new fetchAll_result();
     result.Read(iprot_);
     iprot_.ReadMessageEnd();
     if (result.__isset.success)
     {
         return result.Success;
     }
     if (result.__isset.ex)
     {
         throw result.Ex;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "fetchAll failed: unknown result");
 }