view src/wifibroadcast/WifiReceiver.java @ 1:649b8573372c

cleanup
author one
date Sat, 28 Jul 2012 12:24:04 +0900
parents src/wifibroadcast/WifiReciver.java@df9d16620c08
children 9c99e2193277
line wrap: on
line source

package wifibroadcast;

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

public interface WifiReceiver {

	void recieve(ByteBuffer testData, long timeout) throws IOException;

	void send(ByteBuffer testData) throws IOException;


}