Creating a timeout for Java RMI client is important since LocateRegistry.getRegistry would make your application unresponsive when the Java RMI server is not available. To create a timeout at the client-side, I suggest you to use ExecutorService. The following codes is an example how to use it:
Suppose you have your localhost listening on port 1099 for RMI and your server serve an interface
public interface RMIService() {
public String sayHello throws RemoteException;
}
Then at your client app, you do this
ExecutorService executor = Executors.newSingleThreadExecutor();
Future<String> future = executor.submit(new Callable<Object>() {
@Override
public Object call() throws Exception {
String host = "localhost";
int port = 1099;
RMIService service = (RMIService) LocateRegistry
.getRegistry(host, port).lookup("RMIService");
System.err.println(service.sayHello());
return null;
}
});
try {
future.get(5, TimeUnit.SECONDS);
} catch (InterruptedException | TimeoutException |
ExecutionException e) {
System.err.println(e.getMessage());
}
The above code will try executing the remote method and will throw exception if the lookup time exceeds 5 seconds.
Hope this helps. :)
This is a pretty good way to handle time outs, I was thinking to interrupt the thread.. but i think the RMI client time out should not be done even if one of the below is true:
ReplyDelete1) The RMI Call changes the state of the system 2) RMI call is transactional 3) RMI call involves a-sync nature of handling things like JMS/MDB, a-sync EJB etc.
Thanks for the input. :)
DeleteA universal message I suppose, not giving up is the formula for success I think. Some things take longer than others to accomplish, so people must understand that they should have their eyes on the goal, and that should keep them motivated to see it out til the end.
ReplyDeleteData Science Tutorial
Data Science training in anna nagar
Data science training in jaya nagar
Data science training in pune
Data Science Training in Marathahalli
Data science training in kalyan nagar
Such a great blog.Thanks for sharing useful information......
ReplyDeleteApplications of Hadoop
Hadoop Applications
This comment has been removed by the author.
ReplyDeleteGreat post. keep sharing such a worthy information.
ReplyDeleteWeb Designing Course In Chennai
This post is so helpfull and informative.keep updating with more information...
ReplyDeleteHow Useful Is German
Learning The German Language
Great post. keep sharing such a worthy information.
ReplyDeleteData Science Course in Chennai