executionalert.java

来自「100多M的J2EE培训内容」· Java 代码 · 共 17 行

JAVA
17
字号
package bible.rmi.example4;

import weblogic.rmi.Remote;

/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?