Click or drag to resize

ReusableObjectPoolTReturnObject Method

Returns object to the pool.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public void ReturnObject(
	T item
)
View Source

Parameters

item  T
Reference to the object being returned.
Remarks
If type of T implements ISupportLifecycle, the pool will automatically return the item to the pool when the Disposed event is raised, usually when the object's Dispose method is called.
See Also