-
- All Known Implementing Classes:
- RMISocketFactory, SslRMIClientSocketFactory
public interface RMIClientSocketFactory
AnRMIClientSocketFactory
instance is used by the RMI runtime in order to obtain client sockets for RMI calls. A remote object can be associated with anRMIClientSocketFactory
when it is created/exported via the constructors orexportObject
methods ofjava.rmi.server.UnicastRemoteObject
andjava.rmi.activation.Activatable
.An
RMIClientSocketFactory
instance associated with a remote object will be downloaded to clients when the remote object's reference is transmitted in an RMI call. ThisRMIClientSocketFactory
will be used to create connections to the remote object for remote method calls.An
RMIClientSocketFactory
instance can also be associated with a remote object registry so that clients can use custom socket communication with a remote object registry.An implementation of this interface should be serializable and should implement
Object.equals(java.lang.Object)
to returntrue
when passed an instance that represents the same (functionally equivalent) client socket factory, andfalse
otherwise (and it should also implementObject.hashCode()
consistently with itsObject.equals
implementation).- Since:
- 1.2
- See Also:
UnicastRemoteObject
,Activatable
,LocateRegistry
-
-
Method Summary
Methods Modifier and Type Method and Description Socket
createSocket(String host, int port)
Create a client socket connected to the specified host and port.
-
-
-
Method Detail
-
createSocket
Socket createSocket(String host, int port) throws IOException
Create a client socket connected to the specified host and port.- Parameters:
host
- the host nameport
- the port number- Returns:
- a socket connected to the specified host and port.
- Throws:
IOException
- if an I/O error occurs during socket creation- Since:
- 1.2
-
-
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
18/12/2024 16:47:52 Cette version de la page est en cache (à la date du 18/12/2024 16:47:52) 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 02/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/rmi/server/rmiclientsocketfactory.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.