Class RemoteServer
java.lang.Object
java.rmi.server.RemoteObject
java.rmi.server.RemoteServer
- All Implemented Interfaces:
Serializable, Remote
- Direct Known Subclasses:
UnicastRemoteObject
The
RemoteServer class is the common superclass to server
implementations and provides the framework to support a wide range
of remote reference semantics. Specifically, the functions needed
to create and export remote objects (i.e. to make them remotely
available) are provided abstractly by RemoteServer and
concretely by its subclass(es).- Since:
- 1.1
- See Also:
-
Field Summary
Fields declared in class RemoteObject
ref -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructs aRemoteServer.protectedRemoteServer(RemoteRef ref) Constructs aRemoteServerwith the given reference type. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringReturns a string representation of the client host for the remote method invocation being processed in the current thread.static PrintStreamgetLog()Returns stream for the RMI call log.static voidsetLog(OutputStream out) Log RMI calls to the output streamout.Methods declared in class RemoteObject
equals, getRef, hashCode, toString, toStubModifier and TypeMethodDescriptionbooleanCompares two remote objects for equality.getRef()Returns the remote reference for the remote object.inthashCode()Returns a hashcode for a remote object.toString()Returns a String that represents the value of this remote object.static RemoteReturns the stub for the remote objectobjpassed as a parameter.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
RemoteServer
protected RemoteServer()Constructs aRemoteServer.- Since:
- 1.1
-
RemoteServer
Constructs aRemoteServerwith the given reference type.- Parameters:
ref- the remote reference- Since:
- 1.1
-
-
Method Details
-
getClientHost
Returns a string representation of the client host for the remote method invocation being processed in the current thread.- Returns:
- a string representation of the client host
- Throws:
ServerNotActiveException- if no remote method invocation is being processed in the current thread- Since:
- 1.1
-
setLog
Log RMI calls to the output streamout. Ifoutisnull, call logging is turned off.- Parameters:
out- the output stream to which RMI calls should be logged- Since:
- 1.1
- See Also:
-
getLog
Returns stream for the RMI call log.- Returns:
- the call log
- Since:
- 1.1
- See Also:
-