Click or drag to resize

QueueType Enumeration

This is Queue method of work. AutoDynamic: Store all elements in sliding window specified by time period. Automatically drop element when it out of the window.

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public enum QueueType
Members
  Member nameValueDescription
SingleElement0 SingleElement: Queue store only one single element. (Useful as default method for indicators history storing)
ManualControl1 ManualControl: Support all typical operations specific to Dequeue. (Useful for some custom work).
AutoDynamic2 AutoDynamic: Store all elements in sliding window specified by time period. Automatically drop element when it out of the window.
AutoStatic3 AutoStatic: Store all elements in sliding window specified by number elements to store. Automatically drop element when it out of the window.
See Also