Interface DOMSnapshot
public interface DOMSnapshot
Contains historical DOM information at a specific time.
- 
Method SummaryModifier and TypeMethodDescriptionfloat[]Gets the ask prices.float[]Gets the ask sizes corresponding to each ask price (see getAskPrices()).float[]Gets the bid prices.float[]Gets the bid sizes corresponding to each ask price (see getAskPrices()).longgetTime()Gets the time (in milliseconds since 1970) that this snapshot was taken.
- 
Method Details- 
getTimelong getTime()Gets the time (in milliseconds since 1970) that this snapshot was taken.- Returns:
- time that this snapshot was taken (in milliseconds since 1970)
 
- 
getAskPricesfloat[] getAskPrices()Gets the ask prices.- Returns:
- ask prices (as a float array)
 
- 
getAskSizesfloat[] getAskSizes()Gets the ask sizes corresponding to each ask price (see getAskPrices()).- Returns:
- ask sizes (as a float array)
 
- 
getBidPricesfloat[] getBidPrices()Gets the bid prices.- Returns:
- bid prices (as a float array)
 
- 
getBidSizesfloat[] getBidSizes()Gets the bid sizes corresponding to each ask price (see getAskPrices()).- Returns:
- bid sizes (as a float array)
 
 
-