Click or drag to resize

GenericObjectPoolTObjectAcquired Event

[This is preliminary documentation and is subject to change.]

Occurs when an object is acquired from the pool.

Namespace:  Umbrace.Unity.PurePool
Assembly:  Umbrace.Unity.PurePool (in Umbrace.Unity.PurePool.dll) Version: 0.0.0.0 (1.0.0.0)
Syntax
C#
public event EventHandler<PoolObjectAcquiredEventArgs<T>> ObjectAcquired

Value

Type: SystemEventHandlerPoolObjectAcquiredEventArgsT
Remarks
This event will also be invoked for objects that are instantiated when the pool is empty, in addition to ObjectInstantiated. In this situation, the Instantiated property is set to to indicate that the acquired object was instantiated.
See Also