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

Java编程

开发平台:

Java

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