Beispiel #1
0
 public List<TMessageBox> recv_getMessageBoxList()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   getMessageBoxList_result result = new getMessageBoxList_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, "getMessageBoxList failed: unknown result");
 }
Beispiel #2
0
 public void getMessageBoxList_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   getMessageBoxList_args args = new getMessageBoxList_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   getMessageBoxList_result result = new getMessageBoxList_result();
   try {
     result.Success = iface_.getMessageBoxList(args.ChannelId, args.LastMessagesCount);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("getMessageBoxList", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }