org.marketcetera.client
Interface BrokerStatusListener


public interface BrokerStatusListener

A receiver of broker status changes. Objects which need to receive broker status changes must implement this interface, as well as register themselves with a client via Client.addBrokerStatusListener(BrokerStatusListener).

It's expected that listeners will take a short time to return because all listeners are invoked sequentially. If a listener takes too much time to process a status change, it will delay the status delivery to other registered listeners.

Since:
1.0.0
Version:
$Id: BrokerStatusListener.java 16154 2012-07-14 16:34:05Z colin $
Author:
tlerios@marketcetera.com

Method Summary
 void receiveBrokerStatus(BrokerStatus status)
          Supplies a broker status to the receiver.
 

Method Detail

receiveBrokerStatus

void receiveBrokerStatus(BrokerStatus status)
Supplies a broker status to the receiver.

Parameters:
status - The status.


Copyright © 2012. All Rights Reserved.