-
public interface PortableRemoteObjectDelegate
Supports delegation for method implementations inPortableRemoteObject
. The delegate is a singleton instance of a class that implements this interface and provides a replacement implementation for all the methods ofjavax.rmi.PortableRemoteObject
. Delegates are enabled by providing the delegate's class name as the value of thejavax.rmi.CORBA.PortableRemoteObjectClass
system property.- See Also:
PortableRemoteObject
-
-
Method Summary
Methods Modifier and Type Method and Description void
connect(Remote target, Remote source)
Delegation call forPortableRemoteObject.connect(java.rmi.Remote, java.rmi.Remote)
.void
exportObject(Remote obj)
Delegation call forPortableRemoteObject.exportObject(java.rmi.Remote)
.Object
narrow(Object narrowFrom, Class narrowTo)
Delegation call forPortableRemoteObject.narrow(java.lang.Object, java.lang.Class)
.Remote
toStub(Remote obj)
Delegation call forPortableRemoteObject.toStub(java.rmi.Remote)
.void
unexportObject(Remote obj)
Delegation call forPortableRemoteObject.unexportObject(java.rmi.Remote)
.
-
-
-
Method Detail
-
exportObject
void exportObject(Remote obj) throws RemoteException
Delegation call forPortableRemoteObject.exportObject(java.rmi.Remote)
.- Throws:
RemoteException
-
toStub
Remote toStub(Remote obj) throws NoSuchObjectException
Delegation call forPortableRemoteObject.toStub(java.rmi.Remote)
.- Throws:
NoSuchObjectException
-
unexportObject
void unexportObject(Remote obj) throws NoSuchObjectException
Delegation call forPortableRemoteObject.unexportObject(java.rmi.Remote)
.- Throws:
NoSuchObjectException
-
narrow
Object narrow(Object narrowFrom, Class narrowTo) throws ClassCastException
Delegation call forPortableRemoteObject.narrow(java.lang.Object, java.lang.Class)
.- Throws:
ClassCastException
-
connect
void connect(Remote target, Remote source) throws RemoteException
Delegation call forPortableRemoteObject.connect(java.rmi.Remote, java.rmi.Remote)
.- Throws:
RemoteException
-
-
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
17/11/2024 23:35:12 Cette version de la page est en cache (à la date du 17/11/2024 23:35:12) 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 07/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/rmi/corba/portableremoteobjectdelegate.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.