|
Class Summary |
| AbstractInvoker |
AbstractInvoker is an abstract handler part that contains common methods between both
client and server. |
| Client |
Client is a convience method for invoking remote methods for a given subsystem |
| ClientInvoker |
ClientInvoker is an abstract client part handler that implements the bulk of the heavy
lefting to process a remote method and dispatch it to a remote ServerInvoker and handle the result. |
| ClientInvokerAdapter |
ClientInvokerAdapter.java is a ClientInterceptor for the end of the
interceptor chain: it finds the right RemoteClientInvoker and calls
it. |
| InvocationRequest |
InvocationRequest is passed to ServerInvocationHandler which encapsulates the
unmarshalled method invocation parameters from the ServerInvoker. |
| InvokerLocator |
InvokerLocator is an object that indentifies a specific Invoker on the network, via a unique
locator URI. |
| InvokerRegistry |
InvokerRegistry is a simple registery for creating client and server side Invoker implementations,
getting information about the invokers and register as a invoker creator for one or more specific
transports. |
| RemoteClientInvoker |
RemoteClientInvoker is an abstract client part handler that implements the bulk of the heavy
lefting to process a remote method and dispatch it to a remote ServerInvoker and handle the result. |
| RemoteMethodInvocation |
RemoteMethodInvocation is a serialized object that contains the remote method, arguments, signature and
associated data necessary for a remote ServerInvoker to transport an invocation. |
| RemoteMethodInvocationResult |
RemoteMethodInvocationResult is a return object from a call to a remote Server Invoker. |
| ServerInterceptorChain |
ServerInterceptorChain.java
Created: Fri May 2 10:36:51 2003 |
| ServerInterceptorChain.InterceptorIterator |
|
| ServerInvoker |
ServerInvoker is the server-side part of a remote Invoker. |
| ServerInvokerCallbackHandler |
Responsible for all callbacks in remoting at invoker level (on the server side). |