namespace MemoryPools.Collections.Specialized
{
public sealed class PoolingQueueRef<T> : PoolingQueue<T> where T : class
protected override IPoolingNode<T> CreateNodeHolder()
return (IPoolingNode<T>) Pool<PoolingNodeCanon<T>>.Get().Init(PoolsDefaults.DefaultPoolBucketSize);
}
Powered by TurnKey Linux.