コード例 #1
0
ファイル: Database.cs プロジェクト: nihilus/idaas
 public IdaInstruction recv_fetchInstruction()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   fetchInstruction_result result = new fetchInstruction_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "fetchInstruction failed: unknown result");
 }
コード例 #2
0
ファイル: Database.cs プロジェクト: nihilus/idaas
 public void fetchInstruction_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   fetchInstruction_args args = new fetchInstruction_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   fetchInstruction_result result = new fetchInstruction_result();
   result.Success = iface_.fetchInstruction(args.Address);
   oprot.WriteMessageBegin(new TMessage("fetchInstruction", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }