public void updateSettings2_Process(int seqid, TProtocol iprot, TProtocol oprot) { updateSettings2_args args = new updateSettings2_args(); args.Read(iprot); iprot.ReadMessageEnd(); updateSettings2_result result = new updateSettings2_result(); try { result.Success = iface_.updateSettings2(args.ReqSeq, args.Settings); } catch (TalkException e) { result.E = e; } oprot.WriteMessageBegin(new TMessage("updateSettings2", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }
public int recv_updateSettings2() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } updateSettings2_result result = new updateSettings2_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, "updateSettings2 failed: unknown result"); }