Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

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 Summary
void  dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
Unmarshals arguments, calls the actual remote object implementation, and marshals the return value or any exception.
Operation[]  getOperations()
 
 

Method Detail

dispatch

public 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 Operation[] getOperations()

Contents | Package | Class | Tree | Deprecated | Index | Help Java 1.2 Beta 3
PREV | NEXT SHOW LISTS | HIDE LISTS

Submit a bug or feature
Submit comments/suggestions about new javadoc look.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.