-
- All Superinterfaces:
- Remote
- All Known Implementing Classes:
- ActivationGroup, ActivationGroup_Stub
public interface ActivationInstantiator extends Remote
AnActivationInstantiator
is responsible for creating instances of "activatable" objects. A concrete subclass ofActivationGroup
implements thenewInstance
method to handle creating objects within the group.- Since:
- 1.2
- See Also:
ActivationGroup
-
-
Method Summary
Methods Modifier and Type Method and Description MarshalledObject<? extends Remote>
newInstance(ActivationID id, ActivationDesc desc)
The activator calls an instantiator'snewInstance
method in order to recreate in that group an object with the activation identifier,id
, and descriptor,desc
.
-
-
-
Method Detail
-
newInstance
MarshalledObject<? extends Remote> newInstance(ActivationID id, ActivationDesc desc) throws ActivationException, RemoteException
The activator calls an instantiator'snewInstance
method in order to recreate in that group an object with the activation identifier,id
, and descriptor,desc
. The instantiator is responsible for:- determining the class for the object using the descriptor's
getClassName
method, - loading the class from the code location obtained from the
descriptor (using the
getLocation
method), - creating an instance of the class by invoking the special
"activation" constructor of the object's class that takes two
arguments: the object's
ActivationID
, and theMarshalledObject
containing object specific initialization data, and - returning a MarshalledObject containing the stub for the remote object it created
- Parameters:
id
- the object's activation identifierdesc
- the object's descriptor- Returns:
- a marshalled object containing the serialized representation of remote object's stub
- Throws:
ActivationException
- if object activation failsRemoteException
- if remote call fails- Since:
- 1.2
- determining the class for the object using the descriptor's
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 22:05:13 Cette version de la page est en cache (à la date du 05/11/2024 22:05:13) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 01/09/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/rmi/activation/ActivationInstantiator.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.