当前页面: 
在线文档首页 > 
Spring Framework 2.0.5 API 文档英文版
RemoteInvocationExecutor (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.remoting.support
Interface RemoteInvocationExecutor
- All Known Implementing Classes: 
- DefaultRemoteInvocationExecutor
- public interface RemoteInvocationExecutor 
Strategy interface for executing a RemoteInvocation on a target object.
 Used by RmiServiceExporter (for RMI invokers) and HttpInvokerServiceExporter.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
- DefaultRemoteInvocationFactory,- RemoteInvocationBasedExporter.setRemoteInvocationExecutor(org.springframework.remoting.support.RemoteInvocationExecutor),- RemoteInvocationBasedExporter.setRemoteInvocationExecutor(org.springframework.remoting.support.RemoteInvocationExecutor)
 
invoke
Object invoke(RemoteInvocation invocation,
              Object targetObject)
              throws NoSuchMethodException,
                     IllegalAccessException,
                     InvocationTargetException
- Perform this invocation on the given target object.
 Typically called when a RemoteInvocation is received on the server.
 
- 
- Parameters:
- targetObject- the target object to apply the invocation to
- Returns:
- the invocation result
- Throws:
- NoSuchMethodException- if the method name could not be resolved
- IllegalAccessException- if the method could not be accessed
- InvocationTargetException- if the method invocation resulted in an exception
- See Also:
- Method.invoke(java.lang.Object, java.lang.Object...)
 
Copyright © 2002-2007 The Spring Framework.