org.xins.client.async
Interface CallListener

All Superinterfaces:
EventListener

public interface CallListener
extends EventListener

Listener notified when the call to an API is finished whether it has succeeded or failed.

Since:
XINS 1.4.0
Version:
$Revision: 1.4 $ $Date: 2006/08/28 09:12:34 $
Author:
Anthony Goubard

Method Summary
 void callFailed(CallFailedEvent event)
          Invoked when the call to the function failed.
 void callSucceeded(CallSucceededEvent event)
          Invoked when a successful result has been returned by the function.
 

Method Detail

callSucceeded

public void callSucceeded(CallSucceededEvent event)
Invoked when a successful result has been returned by the function.

Parameters:
event - the call event that has the result of the call.

callFailed

public void callFailed(CallFailedEvent event)
Invoked when the call to the function failed.

Parameters:
event - the call event that has the details of the failure.


See http://www.xins.org/.