public interface

Dispatcher

sun.rmi.server.Dispatcher
Known Indirect Subclasses

Class Overview

The Dispatcher interface allows the transport to make the upcall to the server side remote reference.

Summary

Public Methods
abstract void dispatch(Remote obj, RemoteCall call)
Call to dispatch to the remote object (on the server side).

Public Methods

public abstract void dispatch (Remote obj, RemoteCall call)

Call to dispatch to the remote object (on the server side). The up-call to the server and the marshaling of return result (or exception) should be handled before returning from this method.

Parameters
obj the target remote object for the call
call the "remote call" from which operation and method arguments can be obtained.
Throws
unable to marshal return result
IOException