View Javadoc

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