1 /** 2 * 3 */ 4 package org.sourceforge.jemmrpc.example.echo; 5 6 import org.sourceforge.jemmrpc.shared.AsynchronousCall; 7 8 /** 9 * Client side Echo service interface. Used to allow server to make asynchronous calls to client. 10 * 11 * @author Rory Graves 12 * 13 */ 14 public interface EchoClientIF 15 { 16 /** 17 * Asynchronous server->client echo message. 18 * 19 * @param reply The reply given by the server. 20 */ 21 @AsynchronousCall 22 void asyncEchoReply(String reply); 23 }