📄 executionalert.java
字号:
package bible.rmi.example3;
import weblogic.rmi.Remote;
import java.rmi.RemoteException;
/**
* Clients that wish to be notified of executions must implement this
* remote interface.
*/
public interface ExecutionAlert extends weblogic.rmi.Remote {
/**
* Notifies the client on an execution.
* @param exec
*/
public void notifyOfExecution(Execution exec) throws java.rmi.RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -