Пример #1
0
 public CachePool(RunningPool <T> runningPoool, SleepingPool <T> sleepPool, bool autoClear, int sleepCapcity)
 {
     this.AutoClear    = autoClear;
     this.SleepCapcity = sleepCapcity;
     this.RunningPoool = runningPoool;
     this.SleepPool    = sleepPool;
 }
Пример #2
0
 public PoolObjectPool(RunningPool <IPoolObject> runningPoool, PoolObjectSleepingPool sleepPool, bool autoClear, int cacheCapcity) : base(runningPoool, sleepPool, autoClear, cacheCapcity)
 {
 }
Пример #3
0
 public PoolObjectPool(RunningPool <IPoolObject> runningPoool, PoolObjectSleepingPool sleepPool) : this(runningPoool, sleepPool, true, 16)
 {
 }
Пример #4
0
 public CachePool(RunningPool <T> runningPoool, SleepingPool <T> sleepPool) : this(runningPoool, sleepPool, true, 16)
 {
 }