view src/wifibroadcast/WifiReceiver.java @ 3:9c99e2193277

find broadcast
author one
date Sat, 28 Jul 2012 18:15:13 +0900
parents 649b8573372c
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;


}