Example #1
0
 public Contact recv_findContactByUserTicket()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   findContactByUserTicket_result result = new findContactByUserTicket_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, "findContactByUserTicket failed: unknown result");
 }
Example #2
0
 public void findContactByUserTicket_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   findContactByUserTicket_args args = new findContactByUserTicket_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   findContactByUserTicket_result result = new findContactByUserTicket_result();
   try {
     result.Success = iface_.findContactByUserTicket(args.TicketId);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("findContactByUserTicket", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }