The TradingStatusChangedListener
is the interface that interested listeners should implement
to be alerted when trading becomes available or unavailable. An interested listener should implement this class
and then add itself to the appropriate Trade
instance by invoking the
addTradeStatusChangedListener
method on caplin.trading.trademodel.Trade instance.
Attributes | Name and Description |
---|---|
|
caplin.trading.trademodel.TradingStatusChangedListener()
|
Attributes | Name and Description |
---|---|
|
void
tradingStatusChanged(caplin.trading.trademodel.TradingStatus nStatus)
A listener method that is invoked when trading becomes unavailable. |
►
caplin.trading.trademodel.TradingStatusChangedListener()
►
void
tradingStatusChanged(caplin.trading.trademodel.TradingStatus nStatus)
A listener method that is invoked when trading becomes unavailable.
caplin.trading.trademodel.TradingStatus | nStatus | Indicates the current availability of trading for this listener. Please see caplin.trading.trademodel.TradingStatus for a list of the possible values. |