ProcessQueueTDataAdded Method

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

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
protected virtual void DataAdded()

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