CONTENTS | PREV | NEXT | Java Remote Method Invocation |
The java.rmi.server.RMIFailureHandler interface provides a method for specifying how the RMI runtime should respond when server socket creation fails.package java.rmi.server;public interface RMIFailureHandler {The
public boolean failure(Exception ex);
}failure
method is invoked with the exception that prevented the RMI runtime from creating a java.net.Socket or java.net.ServerSocket. The method returns true if the runtime should attempt to retry and false otherwise.Before this method can be invoked, a failure handler needs to be registered via the
RMISocketFactory.setFailureHandler
call. If the failure handler is not set, creation is not attempted.