コード例 #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;
 }