You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/MemoryPools/Collections/Specialized/PoolingQueueRef.cs

10 lines
299 B

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.