Example #1
0
 public void notifyDownloaded_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   notifyDownloaded_args args = new notifyDownloaded_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   notifyDownloaded_result result = new notifyDownloaded_result();
   try {
     result.Success = iface_.notifyDownloaded(args.PackageId, args.Language);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("notifyDownloaded", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Example #2
0
 public long recv_notifyDownloaded()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   notifyDownloaded_result result = new notifyDownloaded_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, "notifyDownloaded failed: unknown result");
 }