Click or drag to resize

ReusableObjectPoolReturnObject Method

Returns object to the pool.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.243-beta+92d6762f3b12bbbc557022a0922be296d2dc09be
Syntax
public static void ReturnObject(
	Object item
)
View Source

Parameters

item  Object
Reference to the object being returned.
Remarks
If type of item 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