Click or drag to resize

SimpleDataQueue Methods

The SimpleDataQueue type exposes the following members.

Methods
  NameDescription
Public methodClone
Makes full copy of this instance.
Public methodCopyTo
Sets internal state to destination object.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetEnumerator
Returns an enumerator that iterates through a collection.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetIndexByTime
Get offset index of element by element time. If there no element with such time, we return latest element with time smaller than specified. If we can't find valid index, we return -1.
Public methodGetTimeByIndex
Return time associated with specified point.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodPut(Double)
Store new data element in queue. This method for static automatic managed or single queue. Do not call it for manually managed queue or dynamic automatic queue (ManualControl, AutoDynamic types). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodPut(Double, DateTime)
Stores new data element in queue. This method for automatic managed or single element queue. Do not call it for manually managed queue or dynamic automatic queue (ManualControl type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodPutFirst(Double)
Store new data element on first position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodPutFirst(Double, DateTime)
Store new data element on first position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodPutLast(Double)
Store new data element on last position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodPutLast(Double, DateTime)
Store new data element on last position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodRemoveFirst
Remove data element from first position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodRemoveLast
Remove data element from last position in queue. This method for manual queue. Do not call it for automatic managed queue or single element queue (SingleElement, AutoDynamic, AutoStatic type). Note: Please do not use both with and without DateTime method for one queue instance.
Public methodRemoveOnPopDelegate
Remove delegate that will be invoked every time a new element is dequeued.
Public methodRemoveOnPushDelegate
Remove delegate that will be invoked every time a new element is enqueued.
Public methodSetOnPopDelegate
Set delegate that will be invoked every time a new element is dequeued.
Public methodSetOnPushDelegate
Set delegate that will be invoked every time a new element is enqueued.
Public methodSetQueueListener
Set listener to queue capacity. Queue will call OnPop method every time, when queue drop some element. And OnPush method, when queue store element. Do not use listener with single element queue. Queue support any number of listeners.
Public methodToArray
Copies the elements of the SimpleDataQueue to a new array.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also