Click or drag to resize

ProcessQueueTIsSynchronized Property

Gets a value indicating whether access to the ProcessQueueT is synchronized (thread safe). Always returns true for ProcessQueueT.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.245-beta+94213ae9d4d0aa7a2c48e5398b12d267b99f868a
Syntax
public bool IsSynchronized { get; }
View Source

Return Value

Boolean
true, ProcessQueueT is always synchronized (thread safe).
Remarks
The ProcessQueueT is effectively "synchronized" since all functions SyncLock operations internally.
See Also