Esempio n. 1
0
 public SamePriorityObjectManager(int _capacity, ActionTypeOnAddOverflow actionType, int _detectSpanInMSecsOnWait)
     : this()
 {
     this.capacity = _capacity;
     this.actionTypeOnAddOverflow = actionType;
     this.detectSpanInMSecsOnWait = _detectSpanInMSecsOnWait;
 }
Esempio n. 2
0
 public PriorityManagerPara(int _capacity, ActionTypeOnAddOverflow actionType)
 {
     this.capacity = _capacity;
     this.actionTypeOnAddOverflow = actionType;
 }
Esempio n. 3
0
 public PriorityManagerPara(int _capacity, ActionTypeOnAddOverflow actionType, int _detectSpanInMSecsOnWait)
 {
     this.capacity = _capacity;
     this.actionTypeOnAddOverflow = actionType;
     this.detectSpanInMSecsOnWait = _detectSpanInMSecsOnWait;
 }
Esempio n. 4
0
 public SamePriorityObjectManager(int _capacity, ActionTypeOnAddOverflow actionType) : this(_capacity, actionType, 10)
 {
 }