Example #1
0
 public ProximityMatchCandidateResult recv_getProximityMatchCandidateList()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getProximityMatchCandidateList_result result = new getProximityMatchCandidateList_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   if (result.__isset.e) {
     throw result.E;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getProximityMatchCandidateList failed: unknown result");
 }
Example #2
0
 public void getProximityMatchCandidateList_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getProximityMatchCandidateList_args args = new getProximityMatchCandidateList_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getProximityMatchCandidateList_result result = new getProximityMatchCandidateList_result();
   try {
     result.Success = iface_.getProximityMatchCandidateList(args.SessionId);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getProximityMatchCandidateList", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }