Packagecom.adobe.cairngorm.business
Interfacepublic interface Responder

Deprecated as of Cairngorm 2.1, replaced by mx.rpc.IResponder

The Responder interface is implemented by classes that wish to handle data returned as the result of a service-call to the server.

Typically, a server-side call will be made using a service that is defined on the ServiceLocator. These services will either be remote calls onto Java Objects (RemoteObject), Web Service invocations (WebService) or XML over HTTP/HTTPS (HTTPService) service calls.

The results from these server calls will be handled by an object that has been passed to the ServiceLocator as the designated "responder" (the class willing to handle the response).

Typically in the Cairngorm architecture, the Responder interface is implemented by a concrete implementation of an ICommand class that will use a BusinessDelegate class to handle invocation of server-side business logic.

See also

mx.rpc.IResponder
com.adobe.cairngorm.commands.ICommand