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.245-beta+94213ae9d4d0aa7a2c48e5398b12d267b99f868a
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