|
ProcessQueue<T> .DataAdded Method
|
Notifies queue that data was added and/or modified, so it can begin processing data.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.244-beta+cf93f5f8aea4b941e9b426fe4e180c2bd85d31a2
Syntaxprotected virtual void DataAdded()
Protected Overridable Sub DataAdded
protected:
virtual void DataAdded()
abstract DataAdded : unit -> unit
override DataAdded : unit -> unit
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 ProcessQueue<T> and data processing can begin.
To make sure items in the ProcessQueue<T> always get processed, this function is expected to be
invoked from within a SyncLock of the exposed SyncRoot (i.e., InternalList).
See Also