Monday, August 5, 2013

Java RMI: Client timeout

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. :)

8 comments:

  1. 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:
    1) 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.

    ReplyDelete
  2. A 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.
    Data 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

    ReplyDelete
  3. Such a great blog.Thanks for sharing useful information......
    Applications of Hadoop
    Hadoop Applications

    ReplyDelete
  4. This comment has been removed by the author.

    ReplyDelete
  5. This post is so helpfull and informative.keep updating with more information...
    How Useful Is German
    Learning The German Language

    ReplyDelete
  6. Great post. keep sharing such a worthy information.
    Data Science Course in Chennai

    ReplyDelete