Exemplo n.º 1
0
 public bool recv_AddSceneValue_Uint8()
 {
   TMessage msg = iprot_.ReadMessageBegin();
   if (msg.Type == TMessageType.Exception) {
     TApplicationException x = TApplicationException.Read(iprot_);
     iprot_.ReadMessageEnd();
     throw x;
   }
   AddSceneValue_Uint8_result result = new AddSceneValue_Uint8_result();
   result.Read(iprot_);
   iprot_.ReadMessageEnd();
   if (result.__isset.success) {
     return result.Success;
   }
   throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "AddSceneValue_Uint8 failed: unknown result");
 }
Exemplo n.º 2
0
 public void AddSceneValue_Uint8_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   AddSceneValue_Uint8_args args = new AddSceneValue_Uint8_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   AddSceneValue_Uint8_result result = new AddSceneValue_Uint8_result();
   result.Success = iface_.AddSceneValue_Uint8(args._sceneId, args._valueId, args._value);
   oprot.WriteMessageBegin(new TMessage("AddSceneValue_Uint8", TMessageType.Reply, seqid)); 
   result.Write(oprot);
   oprot.WriteMessageEnd();
   oprot.Transport.Flush();
 }