DefaultObjectPool<T> Class

Definition

Default implementation of ObjectPool<T>.

generic <typename T>
 where T : classpublic ref class DefaultObjectPool : Microsoft::Extensions::ObjectPool::ObjectPool<T>
public class DefaultObjectPool<T> : Microsoft.Extensions.ObjectPool.ObjectPool<T> where T : class
type DefaultObjectPool<'T (requires 'T : null)> = class
    inherit ObjectPool<'T (requires 'T : null)>
Public Class DefaultObjectPool(Of T)
Inherits ObjectPool(Of T)

Type Parameters

T

The type to pool objects for.

Inheritance
DefaultObjectPool<T>

Remarks

This implementation keeps a cache of retained objects. This means that if objects are returned when the pool has already reached "maximumRetained" objects they will be available to be Garbage Collected.

Constructors

DefaultObjectPool<T>(IPooledObjectPolicy<T>)

Creates an instance of DefaultObjectPool<T>.

DefaultObjectPool<T>(IPooledObjectPolicy<T>, Int32)

Creates an instance of DefaultObjectPool<T>.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
Get()

Gets an object from the pool if one is available, otherwise creates one.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
Return(T)

Return an object to the pool.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to