Ejemplo n.º 1
0
        public void Unregister(Line Line)
        {
            Command command = new Command();

            command.Add  = false;
            command.Line = Line;
            QueueThreadHelper.SafeEnqueue(m_Commands, command);
        }
Ejemplo n.º 2
0
        public void Register(Line Line)
        {
            var command = new Command();

            command.Add  = true;
            command.Line = Line;
            QueueThreadHelper.SafeEnqueue(m_Commands, command);
        }