Beispiel #1
0
        private void thread_command()
        {
            Cmd cmd = CommandPool.EndQueue();

            while (cmd != null)
            {
                cmd.Execute();
                cmd = CommandPool.EndQueue();
            }
        }