Package COM.activesw.api.client
Interface BrokerCallback
public interface BrokerCallback
This class is implemented by any object which needs to be registered for Information Broker event callbacks.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
handleBrokerEvent
(BrokerClient client, BrokerEvent event, Object client_data) Implement this method to handle the Information Broker event callbacks.
-
Method Details
-
handleBrokerEvent
Implement this method to handle the Information Broker event callbacks. The event should not be modified in any way because it may be passed to other callbacks. Callback methods should return true if they want the event acknowledged (as with BrokerClient.acknowledgeThrough). If any function returns false, then the event is not acknowledged.
-