callbackclientinterface.java

来自「JAVA分布式程序学习的课件(全英文)」· Java 代码 · 共 21 行

JAVA
21
字号
import java.rmi.*;/** * This is a remote interface for illustrating RMI  * client callback. * @author M. L. Liu */public interface CallbackClientInterface   extends java.rmi.Remote{  // This remote method is invoked by a callback  // server to make a callback to an client which  // implements this interface.  // @param message - a string containing information for the  //                  client to process upon being called back.    public String notifyMe(String message)       throws java.rmi.RemoteException;} // end interface

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?