CONTENTS | PREV | NEXT Java Remote Method Invocation


4.1 The Remote Interface

package java.rmi;
public interface Remote {}


The java.rmi.Remote interface serves to identify all remote objects, all remote objects must directly or indirectly implement this interface. Note that all remote interfaces must be declared public.



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