Click or drag to resize

ProcessQueueTTryTake(T) Method

Attempts to remove and return an object from the ProcessQueueT.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.242-beta+5de70bd1c87865d409ebc16b8886196644c0c750
Syntax
public bool TryTake(
	out T item
)
View Source

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