private void OnSendCommand(LauncherCommand command)
 {
     System.Console.WriteLine("Command received.... {0}", command);
     var commandBytes = command.ConvertCommandToBytes();
     if (commandBytes != null)
     {
         _launcher.SendCommand(commandBytes);
     }
 }