Class MarketEvent
Abstract base class for all market events. All market events are objects that
extend this class. Market event classes are simple beans with setter and getter methods for their
properties and minimal business logic. All market events have EventSymbol
property that is defined by this class.
For more details see Javadoc.
public abstract class MarketEvent : IEventType
- Inheritance
-
MarketEvent
- Implements
- Derived
- Inherited Members
Constructors
MarketEvent()
Initializes a new instance of the MarketEvent class.
protected MarketEvent()
MarketEvent(string?)
Initializes a new instance of the MarketEvent class with the specified event symbol.
protected MarketEvent(string? eventSymbol)
Parameters
eventSymbol
stringThe event symbol.
Properties
EventSymbol
Gets or sets event symbol that identifies this event type DXFeedSubscription. Javadoc.
public string? EventSymbol { get; set; }
Property Value
EventTime
Gets or sets time when event was created or zero when time is not available. The difference, measured in milliseconds, between the event creation time and midnight, January 1, 1970 UTC or zero when time is not available. Javadoc.
public long EventTime { get; set; }