EventSink.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:1k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.api.event;
  2. /**
  3.  * Interface that will be implemented upon each class that will be used as an
  4.  * event sink for JSpider API events.
  5.  *
  6.  * $Id: EventSink.java,v 1.3 2003/02/27 16:47:31 vanrogu Exp $
  7.  *
  8.  * @author  G黱ther Van Roey
  9.  */
  10. public interface EventSink {
  11.     public void initialize ( );
  12.     public void shutdown ( );
  13.     /**
  14.      * Notifies the event sink of a new event.
  15.      * @param event the event that occurred
  16.      */
  17.     public void notify(JSpiderEvent event);
  18. }