예제 #1
0
파일: Program.cs 프로젝트: AndrewPopkov/rd
 public ProducerThread(QueueSynchronization <Element> qc)
     : base()
 {
     this.QueueCommon = qc;
     this.doing       = true;
     this.QueueStop   = new QueueSynchronization <Stopper>();
 }
예제 #2
0
파일: Program.cs 프로젝트: AndrewPopkov/rd
        public ManagerThread(int _CountConsumerThread, int _timeWork)
        {
            this.QueueCommon = new QueueSynchronization <Element>();

            this.CountConsumerThread = _CountConsumerThread;

            this.CountConsumerThread = _timeWork;
        }
예제 #3
0
파일: Program.cs 프로젝트: AndrewPopkov/rd
 public ConsumerThread(QueueSynchronization <Element> qc)
     : base()
 {
     this.QueueCommon = qc;
     this.doing       = true;
 }