CONTENTS | PREV | NEXT | Java Remote Method Invocation |
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 { }