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.191-beta+925724bd48239ba1d4417fe63f8c4977892ab734
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