Click or drag to resize

ProcessQueueTDataAdded Method

Notifies queue that data was added and/or modified, so it can begin processing data.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.220-beta+a56b2444ff27b37e053039e60f062b99378309bd
Syntax
protected virtual void DataAdded()
View Source
Remarks

Derived classes *must* make sure to call this method after data gets added, so that the process timer can be enabled for intervaled ProcessQueueT and data processing can begin.

To make sure items in the ProcessQueueT always get processed, this function is expected to be invoked from within a SyncLock of the exposed SyncRoot (i.e., InternalList).

See Also