View Javadoc

1   /*
2    * Created on Mar 22, 2004
3    *
4   
5    */
6   package org.neo.swarm.util.network.multicast;
7   
8   import java.io.IOException;
9   
10  /***
11   * @author navery
12   *
13   */
14  public interface Receiver {
15  	
16  	byte[] read() throws IOException;
17  	void close() throws IOException;
18  }