Beispiel #1
0
 public void sendCommand_Process(int seqid, TProtocol iprot, TProtocol oprot)
 {
   sendCommand_args args = new sendCommand_args();
   args.Read(iprot);
   iprot.ReadMessageEnd();
   iface_.sendCommand(args.TrackerId, args.Command);
   return;
 }
Beispiel #2
0
 public void send_sendCommand(int trackerId, tracker_command command)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("sendCommand", TMessageType.Call, seqid_));
   sendCommand_args args = new sendCommand_args();
   args.TrackerId = trackerId;
   args.Command = command;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }