Final

Uses of Interface
java.rmi.Remote

Packages that use Remote
java.rmi   
java.rmi.dgc   
java.rmi.registry   
java.rmi.server   
 

Uses of Remote in java.rmi
 

Methods in java.rmi that return Remote
static Remote Naming.lookup(String url)
          Answers a reference to a remote object specified by its name and location.
 

Methods in java.rmi with parameters of type Remote
static void Naming.bind(String url, Remote obj)
          Binds the object name specified in url to the remote object obj in the registry specified by host and port.
static void Naming.rebind(String url, Remote obj)
          Binds the object name specified in url to the remote object obj in the registry specified by host and port.
 

Uses of Remote in java.rmi.dgc
 

Subinterfaces of Remote in java.rmi.dgc
 interface DGC
          This interface defines the API for the distributed garbage collector.
 

Uses of Remote in java.rmi.registry
 

Subinterfaces of Remote in java.rmi.registry
 interface Registry
          This interface defines the RMI registry API.
 

Methods in java.rmi.registry that return Remote
 Remote Registry.lookup(String name)
          Answers a reference to a remote object specified by its name and location.
 

Methods in java.rmi.registry with parameters of type Remote
 void Registry.bind(String name, Remote o)
          Binds the object name specified in url to the remote object obj in the registry specified by host and port.
 void Registry.rebind(String name, Remote o)
          Binds the object name specified in url to the remote object obj in the registry specified by host and port.
 

Uses of Remote in java.rmi.server
 

Classes in java.rmi.server that implement Remote
 class RemoteObject
          This is the super-class of all remote objects classes.
 class RemoteServer
          This is the super class of all remote object servers.
 class RemoteStub
          This is the super class of all remote object's stub classes.
 class UnicastRemoteObject
          This is a default superclass for all remote objects.
 

Methods in java.rmi.server that return Remote
static Remote UnicastRemoteObject.exportObject(Remote obj, int port)
          Exports the object obj in the specified port.
static Remote UnicastRemoteObject.exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
          Exports the object obj in the specified port.
static Remote RemoteObject.toStub(Remote obj)
          Answers the remote object's stub which is created at exporting time.
 

Methods in java.rmi.server with parameters of type Remote
 void Skeleton.dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
          Called by the server side of the RMI implementation when a remote message is received from the client.
static RemoteStub UnicastRemoteObject.exportObject(Remote obj)
          Exports the object obj in the next TCP free port.
static Remote UnicastRemoteObject.exportObject(Remote obj, int port)
          Exports the object obj in the specified port.
static Remote UnicastRemoteObject.exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
          Exports the object obj in the specified port.
 Object RemoteRef.invoke(Remote obj, Method method, Object[] parms, long opnum)
          Invokes the given method on a remote object with the supplied parameters.
static Remote RemoteObject.toStub(Remote obj)
          Answers the remote object's stub which is created at exporting time.
static boolean UnicastRemoteObject.unexportObject(Remote obj, boolean force)
          Unexports the object obj.
 


Final

Licensed Materials - Property of IBM
(C) Copyright IBM Corp. 2006 All Rights Reserved.