Coverage Report - org.apache.commons.feedparser.network.NetworkEventListener
 
Classes in this File Line Coverage Branch Coverage Complexity
NetworkEventListener
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright 1999,2004 The Apache Software Foundation.
 3  
  * 
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  * 
 8  
  *      http://www.apache.org/licenses/LICENSE-2.0
 9  
  * 
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.apache.commons.feedparser.network;
 18  
 
 19  
 import java.util.EventListener;
 20  
 
 21  
 /**
 22  
  * An AggregationEventListener provides event dispatch from the core Aggregation
 23  
  * class to implementors of the AggregationEventListener interface.
 24  
  * 
 25  
  * Note that all NetworkEventListeners should be threadsafe.
 26  
  *
 27  
  * @author <a href="mailto:burton@openprivacy.org">Kevin A. Burton</a>
 28  
  * @version $Id: NetworkEventListener.java 373622 2006-01-30 22:53:00Z mvdb $
 29  
  */
 30  
 public interface NetworkEventListener extends EventListener {
 31  
 
 32  
     /**
 33  
      * Called once per request.
 34  
      *
 35  
      * 
 36  
      */
 37  
     public void init( DataEvent event );
 38  
     
 39  
     public void dataEvent( DataEvent event );
 40  
 
 41  
     /**
 42  
      * Called when this stream is closed.
 43  
      */
 44  
     public void onClosed();
 45  
     
 46  
 }