public CachePool(RunningPool <T> runningPoool, SleepingPool <T> sleepPool, bool autoClear, int sleepCapcity) { this.AutoClear = autoClear; this.SleepCapcity = sleepCapcity; this.RunningPoool = runningPoool; this.SleepPool = sleepPool; }
public PoolObjectPool(RunningPool <IPoolObject> runningPoool, PoolObjectSleepingPool sleepPool, bool autoClear, int cacheCapcity) : base(runningPoool, sleepPool, autoClear, cacheCapcity) { }
public PoolObjectPool(RunningPool <IPoolObject> runningPoool, PoolObjectSleepingPool sleepPool) : this(runningPoool, sleepPool, true, 16) { }
public CachePool(RunningPool <T> runningPoool, SleepingPool <T> sleepPool) : this(runningPoool, sleepPool, true, 16) { }