?? callbackclientinterface.java
字號:
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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -