Beispiel #1
0
		private IOThreadScheduler(int capacity, int capacityLowPri)
		{
			this.headTail = -131072;
			this.headTailLowPri = -65536;
			this.slots = new IOThreadScheduler.Slot[capacity];
			this.slotsLowPri = new IOThreadScheduler.Slot[capacityLowPri];
			this.overlapped = new IOThreadScheduler.ScheduledOverlapped();
		}
Beispiel #2
0
 private IOThreadScheduler(int capacity, int capacityLowPri)
 {
     this.headTail       = -131072;
     this.headTailLowPri = -65536;
     this.slots          = new IOThreadScheduler.Slot[capacity];
     this.slotsLowPri    = new IOThreadScheduler.Slot[capacityLowPri];
     this.overlapped     = new IOThreadScheduler.ScheduledOverlapped();
 }