Ejemplo n.º 1
0
 public void updateSettingsAttributes_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   updateSettingsAttributes_args args = new updateSettingsAttributes_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   updateSettingsAttributes_result result = new updateSettingsAttributes_result();
   try {
     result.Success = iface_.updateSettingsAttributes(args.ReqSeq, args.AttrBitset, args.Settings);
   } catch (TalkException e) {
     result.E = e;
   }
   oprot.WriteMessageBegin(new TMessage("updateSettingsAttributes", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }
Ejemplo n.º 2
0
 public int recv_updateSettingsAttributes()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   updateSettingsAttributes_result result = new updateSettingsAttributes_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, "updateSettingsAttributes failed: unknown result");
 }