ProcessQueueTTryTake(T) Method

Attempts to remove and return an object from the ProcessQueueT.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
public bool TryTake(
	out T item
)

Parameters

item  T
When this method returns, if the object was removed and returned successfully, item contains the removed object. If no object was available to be removed, the value is unspecified.

Return Value

Boolean
true if an object was removed and returned successfully; otherwise, false.

See Also