T
- type of the event symbol for this event type.public interface EventType<T> extends Serializable
Event types are POJOs (plain old java objects) that follow bean naming convention with getters and setters for their properties. All event types are serializable, because they are transferred over network from publishers to data feed consumers. However, they are using custom serialization format for this purpose.
DXFeed
Modifier and Type | Method and Description |
---|---|
T |
getEventSymbol()
Returns event symbol that identifies this event type in
subscription . |
void |
setEventSymbol(T eventSymbol)
Changes event symbol that identifies this event type in
subscription . |
T getEventSymbol()
subscription
.void setEventSymbol(T eventSymbol)
subscription
.eventSymbol
- event symbol.Copyright © 2014 Devexperts. All Rights Reserved.