CONTENTS | PREV | NEXT Java Remote Method Invocation


8.1 The RemoteStub Class

The java.rmi.server.RemoteStub class is the common superclass to all client stubs. Stub objects are surrogates that support exactly the same set of remote interfaces defined by the actual implementation of a remote object.

package java.rmi.server;


public abstract class RemoteStub extends java.rmi.RemoteObject {

}




CONTENTS | PREV | NEXT
Copyright © 1997-1998 Sun Microsystems, Inc. All Rights Reserved.