public class SimpleServiceInvoker extends ServiceInvoker<SimpleServiceFactory>
destination, factory, invocationListeners, invokee| Modifier | Constructor and Description |
|---|---|
protected |
SimpleServiceInvoker(Destination destination,
SimpleServiceFactory factory) |
| Modifier and Type | Method and Description |
|---|---|
protected Object |
adjustInvokee(RemotingMessage request,
String methodName,
Object[] args)
Called at the beginning of the
ServiceInvoker.invoke(RemotingMessage) method. |
afterInvocation, afterInvocationError, beforeInvocation, beforeMethodSearch, invoke, retryInvocationprotected SimpleServiceInvoker(Destination destination, SimpleServiceFactory factory) throws ServiceException
ServiceExceptionprotected Object adjustInvokee(RemotingMessage request, String methodName, Object[] args) throws ServiceException
ServiceInvokerServiceInvoker.invoke(RemotingMessage) method. Give a chance to modify the
the services (invokee) about to be called. Does nothing by default. The default invokee object is
created by actual implementations of this abstract class.adjustInvokee in class ServiceInvoker<SimpleServiceFactory>request - the current remoting message (sent from Flex).methodName - the name of the method to be called.args - the method parameter values.ServiceException - if anything goes wrong.