view src/wifibroadcast/WifiReceiver.java @ 6:248ae478dbe6

cleanup
author one
date Sat, 28 Jul 2012 19:53:35 +0900
parents 9c99e2193277
children bb2538b7eb8d
line wrap: on
line source

package wifibroadcast;

import java.io.IOException;
import java.nio.ByteBuffer;

public interface WifiReceiver {

	public enum SocketType {Sender , Receiver } ;
	
	void recieve(ByteBuffer testData, long timeout) throws IOException;

	void send(ByteBuffer testData) throws IOException;


}