Spec-Zone .ru
спецификации, руководства, описания, API
JavaTM 2 Platform
Standard Edition

java.rmi.server
Interface RemoteRef

All Known Subinterfaces:
ServerRef

public interface RemoteRef
extends Externalizable

RemoteRef represents the handle for a remote object. A RemoteStub uses a remote reference to carry out a remote method invocation to a remote object.

Since:
JDK1.1
See Also:
RemoteStub

Field Summary
static String packagePrefix
          Initialize the server package prefix: assumes that the implementation of server ref classes (e.g., UnicastRef, UnicastServerRef) are located in the package defined by the prefix.
static long serialVersionUID
          indicate compatibility with JDK 1.1.x version of class
 
Method Summary
 void done(RemoteCall call)
          Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls to the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

 String getRefClass(ObjectOutput out)
          Returns the class name of the ref type to be serialized onto the stream 'out'.
 void invoke(RemoteCall call)
          Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls to the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

 Object invoke(Remote obj, Method method, Object[] params, long opnum)
          Invoke a method.
 RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash)
          Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls on the stub's the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

 boolean remoteEquals(RemoteRef obj)
          Compares two remote objects for equality.
 int remoteHashCode()
          Returns a hashcode for a remote object.
 String remoteToString()
          Returns a String that represents the reference of this remote object.
 
Methods inherited from interface java.io.Externalizable
readExternal, writeExternal
 

Field Detail

serialVersionUID

public static final long serialVersionUID
indicate compatibility with JDK 1.1.x version of class

packagePrefix

public static final String packagePrefix
Initialize the server package prefix: assumes that the implementation of server ref classes (e.g., UnicastRef, UnicastServerRef) are located in the package defined by the prefix.
Method Detail

invoke

public Object invoke(Remote obj,
                     Method method,
                     Object[] params,
                     long opnum)
              throws Exception
Invoke a method. This form of delegating method invocation to the reference allows the reference to take care of setting up the connection to the remote host, marshaling some representation for the method and parameters, then communicating the method invocation to the remote host. This method either returns the result of a method invocation on the remote object which resides on the remote host or throws a RemoteException if the call failed or an application-level exception if the remote invocation throws an exception.
Parameters:
obj - the object that contains the RemoteRef (e.g., the RemoteStub for the object.
method - the method to be invoked
params - the parameter list
opnum - a hash that may be used to represent the method
Throws:
Exception - if any exception occurs during remote method invocation
Since:
JDK1.2

newCall

public RemoteCall newCall(RemoteObject obj,
                          Operation[] op,
                          int opnum,
                          long hash)
                   throws RemoteException
Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls on the stub's the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

Creates an appropriate call object for a new remote method invocation on this object. Passing operation array and index, allows the stubs generator to assign the operation indexes and interpret them. The remote reference may need the operation to encode in the call.
Since:
JDK1.1
See Also:
invoke(Remote,java.lang.reflect.Method,Object[],long)

invoke

public void invoke(RemoteCall call)
            throws Exception
Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls to the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

Executes the remote call. Invoke will raise any "user" exceptions which should pass through and not be caught by the stub. If any exception is raised during the remote invocation, invoke should take care of cleaning up the connection before raising the "user" or remote exception.
Since:
JDK1.1
See Also:
invoke(Remote,java.lang.reflect.Method,Object[],long)

done

public void done(RemoteCall call)
          throws RemoteException
Deprecated. JDK1.2 style stubs no longer use this method. Instead of using a sequence of method calls to the remote reference (newCall, invoke, and done), a stub uses a single method, invoke(Remote, Method, Object[], int), on the remote reference to carry out parameter marshalling, remote method executing and unmarshalling of the return value.

JDK1.2 stubs are generated using rmic -v1.2. By default, rmic generates stubs compatible with JDK1.1 and JDK1.2. The compatible stubs can also be generated using rmic -vcompat.

Allows the remote reference to clean up (or reuse) the connection. Done should only be called if the invoke returns successfully (non-exceptionally) to the stub.
Since:
JDK1.1
See Also:
invoke(Remote,java.lang.reflect.Method,Object[],long)

getRefClass

public String getRefClass(ObjectOutput out)
Returns the class name of the ref type to be serialized onto the stream 'out'.
Parameters:
out - the output stream to which the reference will be serialized
Returns:
the class name (without package qualification) of the reference type
Since:
JDK1.1

remoteHashCode

public int remoteHashCode()
Returns a hashcode for a remote object. Two remote object stubs that refer to the same remote object will have the same hash code (in order to support remote objects as keys in hash tables).
Since:
JDK1.1
See Also:
Hashtable

remoteEquals

public boolean remoteEquals(RemoteRef obj)
Compares two remote objects for equality. Returns a boolean that indicates whether this remote object is equivalent to the specified Object. This method is used when a remote object is stored in a hashtable.
Parameters:
obj - the Object to compare with
Returns:
true if these Objects are equal; false otherwise.
Since:
JDK1.1
See Also:
Hashtable

remoteToString

public String remoteToString()
Returns a String that represents the reference of this remote object.
Since:
JDK1.1

JavaTM 2 Platform
Standard Edition

Submit a bug or feature
Java, Java 2D, and JDBC are a trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1999 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.