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.
27 lines
809 B
27 lines
809 B
/*https://github.com/dotnet/aspnetcore/blob/main/src/ObjectPool*/
|
|
|
|
namespace MemoryPools
|
|
{
|
|
/// <summary>
|
|
/// Default implementation for <see cref="PooledObjectPolicy{T}"/>.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of object which is being pooled.</typeparam>
|
|
public class DefaultPooledObjectPolicy<T>
|
|
: PooledObjectPolicy<T> where T : class, new()
|
|
{
|
|
/// <inheritdoc />
|
|
public override T Create()
|
|
{
|
|
return new T();
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override bool Return(T obj)
|
|
{
|
|
// DefaultObjectPool<T> doesn't call 'Return' for the default policy.
|
|
// So take care adding any logic to this method, as it might require changes elsewhere.
|
|
return true;
|
|
}
|
|
}
|
|
}
|