RMIServerSocketFactory (Java SE 10 & JDK 10 )
-
- All Known Implementing Classes:
RMISocketFactory,SslRMIServerSocketFactory
public interface RMIServerSocketFactoryAn
RMIServerSocketFactoryinstance is used by the RMI runtime in order to obtain server sockets for RMI calls. A remote object can be associated with anRMIServerSocketFactorywhen it is created/exported via the constructors orexportObjectmethods ofjava.rmi.server.UnicastRemoteObjectandjava.rmi.activation.Activatable.An
RMIServerSocketFactoryinstance associated with a remote object is used to obtain theServerSocketused to accept incoming calls from clients.An
RMIServerSocketFactoryinstance 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 implement
Object.equals(java.lang.Object)to returntruewhen passed an instance that represents the same (functionally equivalent) server socket factory, andfalseotherwise (and it should also implementObject.hashCode()consistently with itsObject.equalsimplementation).- Since:
- 1.2
- See Also:
UnicastRemoteObject,Activatable,LocateRegistry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerSocketcreateServerSocket(int port)Create a server socket on the specified port (port 0 indicates an anonymous port).
-
-
-
Method Detail
-
createServerSocket
ServerSocket createServerSocket(int port) throws IOException
Create a server socket on the specified port (port 0 indicates an anonymous port).
- Parameters:
port- the port number- Returns:
- the server socket on the specified port
- Throws:
IOException- if an I/O error occurs during server socket creation- Since:
- 1.2
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.