Name

Activatable

Synopsis

This abstract subclass of java.rmi.server.RemoteServer represents a server object that is persistent and activatable, as opposed to a UnicastRemoteObject which represents a server object that is only available during the lifetime of the server process. Both UnicastRemoteObjects and Activatables only support point-to-point communications.

The Activatable class provides a set of constructors and a corresponding set of static exportObject() methods that can be used to register and export a server object, either pre-instantiated or not. The exportObject() methods are provided for server objects that choose not to extend the Activatable class. The getID() method on the class allows you to get the server object’s ActivationID. Other static methods on the class are the register() method, which can be used to register an activatable object without instantiating it, unexportObject(), which removes the specified object from the RMI runtime, unregister(), which removes the activation registration for the given ActivationID, and inactive(), which specifies that the activatable object specified by the given ActivationID is currently not active.

                  Exceptions
public abstract class Activatable extends java.rmi.server.RemoteServer {
// Protected Constructors
   protected Activatable(ActivationID id, 
        int port) throws RemoteException;  
   protected Activatable(ActivationID id, int port, java.rmi.server.RMIClientSocketFactory ...

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.