public interface RMIFailureHandler
RMIFailureHandler
can be registered via the RMISocketFactory.setFailureHandler
call. The failure
method of the handler is invoked when the RMI runtime is unable to create a ServerSocket
to listen for incoming calls. The failure
method returns a boolean indicating whether the runtime should attempt to re-create the ServerSocket
.boolean failure(Exception ex)
failure
callback is invoked when the RMI runtime is unable to create a ServerSocket
via the RMISocketFactory
. An RMIFailureHandler
is registered via a call to RMISocketFactory.setFailureHandler
. If no failure handler is installed, the default behavior is to attempt to re-create the ServerSocket.ex
- the exception that occurred during ServerSocket
creationServerSocket
creation
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.rmi/java/rmi/server/RMIFailureHandler.html