Click or drag to resize

ProcessQueueTTryTake(T) Method

Attempts to remove and return all objects 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[] items
)
View Source

Parameters

items  T
When this method returns, if any objects were removed and returned successfully, item array contains the removed objects. If no object was available to be removed, the value is null.

Return Value

Boolean
true if any objects were removed and returned successfully; otherwise, false.
See Also