Uses of Class
java.rmi.activation.ActivationID
Packages that use ActivationID
-
Uses of ActivationID in java.rmi.activation
Methods in java.rmi.activation that return ActivationIDModifier and TypeMethodDescriptionstatic ActivationID
Activatable.exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port)
Deprecated, for removal: This API element is subject to removal in a future version.Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port.static ActivationID
Activatable.exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Deprecated, for removal: This API element is subject to removal in a future version.Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port, and the specified client and server socket factories.protected ActivationID
Activatable.getID()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the object's activation identifier.ActivationSystem.registerObject(ActivationDesc desc)
Deprecated, for removal: This API element is subject to removal in a future version.TheregisterObject
method is used to register an activation descriptor,desc
, and obtain an activation identifier for a activatable remote object.Methods in java.rmi.activation with parameters of type ActivationIDModifier and TypeMethodDescriptionMarshalledObject<? extends Remote>
Activator.activate(ActivationID id, boolean force)
Deprecated, for removal: This API element is subject to removal in a future version.Activate the object associated with the activation identifier,id
.protected void
ActivationGroup.activeObject(ActivationID id, MarshalledObject<? extends Remote> mobj)
Deprecated, for removal: This API element is subject to removal in a future version.This protected method is necessary for subclasses to make theactiveObject
callback to the group's monitor.abstract void
ActivationGroup.activeObject(ActivationID id, Remote obj)
Deprecated, for removal: This API element is subject to removal in a future version.The group'sactiveObject
method is called when an object is exported (either byActivatable
object construction or an explicit call toActivatable.exportObject
.void
ActivationMonitor.activeObject(ActivationID id, MarshalledObject<? extends Remote> obj)
Deprecated, for removal: This API element is subject to removal in a future version.Informs that an object is now active.static Remote
Activatable.exportObject(Remote obj, ActivationID id, int port)
Deprecated, for removal: This API element is subject to removal in a future version.Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.static Remote
Activatable.exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Deprecated, for removal: This API element is subject to removal in a future version.Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.ActivationSystem.getActivationDesc(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.Returns the activation descriptor, for the object with the activation identifier,id
.static boolean
Activatable.inactive(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.Informs the system that the object with the corresponding activationid
is currently inactive.boolean
ActivationGroup.inactiveObject(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.The group'sinactiveObject
method is called indirectly via a call to theActivatable.inactive
method.void
ActivationMonitor.inactiveObject(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.An activation group calls its monitor'sinactiveObject
method when an object in its group becomes inactive (deactivates).ActivationGroup_Stub.newInstance(ActivationID id, ActivationDesc desc)
Deprecated, for removal: This API element is subject to removal in a future version.Stub method forActivationGroup.newInstance
.MarshalledObject<? extends Remote>
ActivationInstantiator.newInstance(ActivationID id, ActivationDesc desc)
Deprecated, for removal: This API element is subject to removal in a future version.The activator calls an instantiator'snewInstance
method in order to recreate in that group an object with the activation identifier,id
, and descriptor,desc
.ActivationSystem.setActivationDesc(ActivationID id, ActivationDesc desc)
Deprecated, for removal: This API element is subject to removal in a future version.Set the activation descriptor,desc
for the object with the activation identifier,id
.static void
Activatable.unregister(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.Revokes previous registration for the activation descriptor associated withid
.void
ActivationSystem.unregisterObject(ActivationID id)
Deprecated, for removal: This API element is subject to removal in a future version.Remove the activation id and associated descriptor previously registered with theActivationSystem
; the object can no longer be activated via the object's activation id.Constructors in java.rmi.activation with parameters of type ActivationIDModifierConstructorDescriptionprotected
Activatable(ActivationID id, int port)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor used to activate/export the object on a specified port.protected
Activatable(ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor used to activate/export the object on a specified port.