ExecutionAlert.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

  1. package bible.rmi.example3;
  2. import weblogic.rmi.Remote;
  3. import java.rmi.RemoteException;
  4. /**
  5.  * Clients that wish to be notified of executions must implement this
  6.  * remote interface.
  7.  */
  8. public interface ExecutionAlert extends weblogic.rmi.Remote {
  9.   /**
  10.    * Notifies the client on an execution.
  11.    * @param exec
  12.    */
  13.   public void notifyOfExecution(Execution exec) throws java.rmi.RemoteException;
  14. }