diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/wifibroadcast/WifiReceiver.java	Sat Jul 28 12:24:04 2012 +0900
@@ -0,0 +1,13 @@
+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;
+
+
+}