|
ProcessQueueTTryTake(T) Method
|
Attempts to remove and return all objects from the
ProcessQueueT.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
Syntaxpublic bool TryTake(
out T[] items
)
member TryTake :
items : 'T[] byref -> bool
View SourceParameters
- 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
Booleantrue if any objects were removed and returned successfully; otherwise,
false.
See Also