Пример #1
0
 public void getRowWithColumns_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
     var args = new getRowWithColumns_args();
     args.Read(iprot);
     iprot.ReadMessageEnd();
     var result = new getRowWithColumns_result();
     try
     {
         result.Success = this.iface_.getRowWithColumns(args.TableName, args.Row, args.Columns);
     }
     catch (IOError io)
     {
         result.Io = io;
     }
     oprot.WriteMessageBegin(new TMessage("getRowWithColumns", TMessageType.Reply, seqid));
     result.Write(oprot);
     oprot.WriteMessageEnd();
     oprot.Transport.Flush();
 }
Пример #2
0
 public List<TRowResult> recv_getRowWithColumns()
 {
     TMessage msg = this.iprot_.ReadMessageBegin();
     if (msg.Type == TMessageType.Exception)
     {
         TApplicationException x = TApplicationException.Read(this.iprot_);
         this.iprot_.ReadMessageEnd();
         throw x;
     }
     var result = new getRowWithColumns_result();
     result.Read(this.iprot_);
     this.iprot_.ReadMessageEnd();
     if (result.__isset.success)
     {
         return result.Success;
     }
     if (result.__isset.io)
     {
         throw result.Io;
     }
     throw new TApplicationException(TApplicationException.ExceptionType.MissingResult,
                                     "getRowWithColumns failed: unknown result");
 }