Del via


LeakTrackingObjectPool<T> Class

Definition

Caution

LeakTrackingObjectPool<T> was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.

An ObjectPool<T> implementation that detects leaks in the use of the object pool.

A leak is produced if an object is leased from the pool but not returned before it is finalized. An error is only produced in Debug builds. This type is only recommended to be used for diagnostic builds.

generic <typename T>
 where T : classpublic ref class LeakTrackingObjectPool : Microsoft::Extensions::ObjectPool::ObjectPool<T>
[System.Obsolete("LeakTrackingObjectPool<T> was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.")]
public class LeakTrackingObjectPool<T> : Microsoft.Extensions.ObjectPool.ObjectPool<T> where T : class
[<System.Obsolete("LeakTrackingObjectPool<T> was only intended for internal use in diagnostic builds of .NET. It never functioned in publicly shipped .NET versions and may be removed in a future release.")>]
type LeakTrackingObjectPool<'T (requires 'T : null)> = class
    inherit ObjectPool<'T (requires 'T : null)>
Public Class LeakTrackingObjectPool(Of T)
Inherits ObjectPool(Of T)

Type Parameters

T

The type of object which is being pooled.

Inheritance
LeakTrackingObjectPool<T>
Attributes

Constructors

LeakTrackingObjectPool<T>(ObjectPool<T>)

Initializes a new instance of LeakTrackingObjectPool<T>.

Methods

Get()

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

Return(T)

Return an object to the pool.

Applies to