Uses of Class
com.dxfeed.api.event.Event

Packages that use Event
com.dxfeed.api   
com.dxfeed.api.event   
com.dxfeed.api.impl   
com.dxfeed.api.spi   
 

Uses of Event in com.dxfeed.api
 

Classes in com.dxfeed.api with type parameters of type Event
 interface DXFeedEventListener<T extends Event>
          The listener interface for receiving events of the specified type T.
 class DXFeedSubscription<T extends Event>
          This class represents a subscription for a set of symbols and event types.
 

Methods in com.dxfeed.api with type parameters of type Event
<T extends Event>
DXFeedSubscription<T>
DXFeed.createSubscription(java.lang.Class<? extends T>... eventTypes)
          Creates new subscription that is attached to this feed.
abstract
<T extends Event>
T
DXFeed.getLastEvent(T event)
          Returns the last event for the specified symbol and event type.
 

Method parameters in com.dxfeed.api with type arguments of type Event
 boolean DXFeedSubscription.containsEventType(java.lang.Class<? extends Event> eventType)
          Returns true if this subscription contains the corresponding event type.
 

Uses of Event in com.dxfeed.api.event
 

Subclasses of Event in com.dxfeed.api.event
 class Order
          Order event for full available market depth for a symbol.
 class Profile
          Security profile-related information that contains description.
 class Quote
          Quote event with best bid and ask, and other fields that change with each quote.
 class Summary
          Summary information about the trading session including session highs, lows, etc.
 class TimeAndSale
          Time and Sale represents a trade (or other market event with price, e.g. market open/close price, etc.).
 class Trade
          Trade event with the price and size of the last trade and other fields that change with each trade.
 

Uses of Event in com.dxfeed.api.impl
 

Methods in com.dxfeed.api.impl with type parameters of type Event
<T extends Event>
T
DXFeedImpl.getLastEvent(T event)
           
 

Uses of Event in com.dxfeed.api.spi
 

Classes in com.dxfeed.api.spi with type parameters of type Event
 interface DXFeedEventDelegate<T extends Event>
           
 interface DXFeedEventDelegateSet<T extends Event,D extends DXFeedEventDelegate<T>>