ProcessQueueTTryTake(T) Method
Namespace: Gemstone.Threading.CollectionsAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.147 -- Release Build+71918e29738e2d0700de8aec0ad72324b16f1428
public bool TryTake(
out T item
)
Public Function TryTake (
<OutAttribute> ByRef item As T
) As Boolean
public:
bool TryTake(
[OutAttribute] T% item
)
- 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.
Booleantrue if an object was removed and returned successfully; otherwise,
false.