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.243-beta+92d6762f3b12bbbc557022a0922be296d2dc09be
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