Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Interface java.rmi.server.Skeleton

public interface Skeleton

Used solely by the implementation.

Every skeleton class generated by the rmic stub compiler implements this interface. A skeleton for a remote object is a server-side entity that dispatches calls to the actual remote object implementation.


Method Index

dispatch(Remote, RemoteCall, int, long)
Unmarshals arguments, calls the actual remote object implementation, and marshals the return value or any exception.
getOperations()

Methods

dispatch
 public abstract void dispatch(Remote obj,
                               RemoteCall theCall,
                               int opnum,
                               long hash) throws Exception
Unmarshals arguments, calls the actual remote object implementation, and marshals the return value or any exception.

Throws: Exception
if a general exception occurs.
getOperations
 public abstract Operation[] getOperations()

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)