public bool recv_SetValue_Int16() { TMessage msg = iprot_.ReadMessageBegin(); if (msg.Type == TMessageType.Exception) { TApplicationException x = TApplicationException.Read(iprot_); iprot_.ReadMessageEnd(); throw x; } SetValue_Int16_result result = new SetValue_Int16_result(); result.Read(iprot_); iprot_.ReadMessageEnd(); if (result.__isset.success) { return result.Success; } throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "SetValue_Int16 failed: unknown result"); }
public void SetValue_Int16_Process(int seqid, TProtocol iprot, TProtocol oprot) { SetValue_Int16_args args = new SetValue_Int16_args(); args.Read(iprot); iprot.ReadMessageEnd(); SetValue_Int16_result result = new SetValue_Int16_result(); result.Success = iface_.SetValue_Int16(args._id, args._value); oprot.WriteMessageBegin(new TMessage("SetValue_Int16", TMessageType.Reply, seqid)); result.Write(oprot); oprot.WriteMessageEnd(); oprot.Transport.Flush(); }