Пример #1
0
        private Dispatcher(Thread t)
        {
            this.baseThread = t;

            for (int i = 1; i <= (int)DispatcherPriority.Send; i++)
            {
                this.priorityQueues[i] = new PokableQueue();
            }

            this.hooks = new DispatcherHooks(this);
        }
Пример #2
0
        private Dispatcher(Thread t)
        {
            this.baseThread = t;

            for (int i = 1; i <= (int)DispatcherPriority.Send; i++)
            {
                this.priorityQueues[i] = new PokableQueue();
            }

            this.hooks = new DispatcherHooks(this);
        }