API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.rmi.activation. ActivationSystem View Source
Author(s)
Ann Wollrath
Since
1.2
Version
1.19, 11/17/05
Serial
Hierarchy
 Remote
      ActivationSystem
Subinterfaces
Description
public interface ActivationSystem
  The ActivationSystem provides a means for registering groups and "activatable" objects to be activated within those groups.
See also:    Activator ActivationMonitor
Methods
Hide/Show inherited methods
public ActivationMonitor activeGroup (ActivationGroupID id, ActivationInstantiator group, long incarnation) throws UnknownGroupException ActivationException RemoteException
  Callback to inform activation system that group is now active.
public ActivationDesc getActivationDesc (ActivationID id) throws ActivationException UnknownObjectException RemoteException
  Returns the activation descriptor, for the object with the activation identifier, id.
public ActivationGroupDesc getActivationGroupDesc (ActivationGroupID id) throws ActivationException UnknownGroupException RemoteException
  Returns the activation group descriptor, for the group with the activation group identifier, id.
public ActivationGroupID registerGroup (ActivationGroupDesc desc) throws ActivationException RemoteException
  Register the activation group.
public ActivationID registerObject (ActivationDesc desc) throws ActivationException UnknownGroupException RemoteException
  The registerObject method is used to register an activation descriptor, desc, and obtain an activation identifier for a activatable remote object.
public ActivationDesc setActivationDesc (ActivationID id, ActivationDesc desc) throws ActivationException UnknownObjectException UnknownGroupException RemoteException
  Set the activation descriptor, desc for the object with the activation identifier, id.
public ActivationGroupDesc setActivationGroupDesc (ActivationGroupID id, ActivationGroupDesc desc) throws ActivationException UnknownGroupException RemoteException
  Set the activation group descriptor, desc for the object with the activation group identifier, id.
public void shutdown () throws RemoteException
  Shutdown the activation system.
public void unregisterGroup (ActivationGroupID id) throws ActivationException UnknownGroupException RemoteException
  Remove the activation group.
public void unregisterObject (ActivationID id) throws ActivationException UnknownObjectException RemoteException
  Remove the activation id and associated descriptor previously registered with the ActivationSystem; the object can no longer be activated via the object's activation id.
Fields
Hide/Show inherited fields
publicfinalstatic int SYSTEM_PORT = "1098"
The port to lookup the activation system.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar