Project

General

Profile

Revision 3

Update

View differences:

Sender.java
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();

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 15
}

Also available in: Unified diff