mirror of https://github.com/ogoun/Zero.git
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.
35 lines
973 B
35 lines
973 B
using System;
|
|
|
|
/*https://github.com/dotnet/aspnetcore/blob/main/src/ObjectPool*/
|
|
|
|
namespace MemoryPools
|
|
{
|
|
/// <summary>
|
|
/// The default <see cref="ObjectPoolProvider"/>.
|
|
/// </summary>
|
|
public class DefaultObjectPoolProvider
|
|
: ObjectPoolProvider
|
|
{
|
|
/// <summary>
|
|
/// The maximum number of objects to retain in the pool.
|
|
/// </summary>
|
|
public int MaximumRetained { get; set; } = Environment.ProcessorCount * 2;
|
|
|
|
/// <inheritdoc/>
|
|
public override ObjectPool<T> Create<T>(IPooledObjectPolicy<T> policy)
|
|
{
|
|
if (policy == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(policy));
|
|
}
|
|
|
|
if (typeof(IDisposable).IsAssignableFrom(typeof(T)))
|
|
{
|
|
return new DisposableObjectPool<T>(policy, MaximumRetained);
|
|
}
|
|
|
|
return new DefaultObjectPool<T>(policy, MaximumRetained);
|
|
}
|
|
}
|
|
}
|