View Javadoc

1   /**
2    * 
3    */
4   package org.sourceforge.jemmrpc.shared;
5   
6   /**
7    * Trivial interface to allow RPCHandler users to be notified when a client connection disconnects.
8    * 
9    * @author Rory Graves
10   * 
11   */
12  public interface RPCHandlerListener
13  {
14      /** Notification that the RPCHandler has had the connection terminated. */
15      void connectionTerminated();
16  }