Click or drag to resize

IDataQueueListenerT Interface

Represents an interface of IDataQueue event Listener. Listner can be set to paricular IDataQueue by calling SetListener method.

Namespace:  FinAnalysis.Base
Assembly:  FinAnalysis.Base (in FinAnalysis.Base.dll) Version: 2.1.13-cc97e13414b71fde928e8f3a546ac1daf26f295f
Syntax
C#
public interface IDataQueueListener<T>

Type Parameters

T
Queue data type. Note: T must has default public constructor.

The IDataQueueListenerT type exposes the following members.

Methods
  NameDescription
Public methodOnPop
IDataQueue will call OnPop every time, when queue drop some element.
Public methodOnPush
IDataQueue will call OnPush every time, when queue store some element.
Top
See Also