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/PoolingStack.cs

10 lines
254 B

namespace MemoryPools.Collections.Specialized
{
public class PoolingStack<T> : PoolingStackBase<T>
{
protected override IPoolingNode<T> CreateNodeHolder()
{
return Pool<PoolingNode<T>>.Get().Init(PoolsDefaults.DefaultPoolBucketSize);
}
}
}

Powered by TurnKey Linux.