Table of Contents

Enum PooledObjectState

Namespace
CodeProject.ObjectPool.Core
Assembly
CodeProject.ObjectPool.dll

Describes the state of a pooled object.

public enum PooledObjectState

Fields

Available = 0

The object is inside the pool, waiting to be used.

Disposed = 2

The object has been disposed and cannot be used anymore.

Unavailable = 1

The object is outside the pool, waiting to return to the pool.