Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 » QAnywhere » QAnywhere Reference » QAnywhere Java API reference » QAnywhere Java API for web services » WSBase class

 

setListener method

Syntax
void WSBase.setListener(
  String requestID,
  WSListener listener
)
Parameters
  • requestID   The ID of the web service request to which to listen for results.

  • listener   The listener object that gets called when the result of the given web service request is available.

Remarks

Sets a listener for the results of a given web service request.

Listeners are typically used to get results of the asyncXYZ methods of the service.

To remove a listener, call setListener with null as the listener.

Note: This method replaces the listener set by any previous call to setListener.