Click or drag to resize

DoubleBufferedQueue<T> .TryEnqueue Method

Attempts to enqueue a collection of items into the double-buffered queue.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
Syntax
public bool TryEnqueue(
	IEnumerable<T> items
)
View Source

Parameters

items  IEnumerable<T>
The collection of items to be enqueued.

Return Value

Boolean
True if the items were successfully enqueued; false otherwise.
See Also