Ejemplo n.º 1
0
        private static void HandleBinaryCommand(byte[] data, BlockingCollection <TelloCommand> queue)
        {
            TelloCommand command = serializer.Read(data);

            log.Debug($"Cmd: {command.Id}");
            queue.Add(command);
        }