Project

General

Profile

Statistics
| Revision:

root / src / peer / channels / Sender.java @ 3

History | View | Annotate | Download (211 Bytes)

1
package peer.channels;
2

    
3
import java.net.InetAddress;
4

    
5
/**
6
 * Sender
7
 */
8
public interface Sender {
9

    
10
        public void send(byte[] message);
11

    
12
        public void init(InetAddress address, int port);
13

    
14
        public void destroy();
15
}