Mercurial > hg > Members > kono > WifiBroadcast
view src/wifibroadcast/WifiReceiver.java @ 12:e1f43b669cdb
broadcast on DatagramChannel
author | one |
---|---|
date | Sun, 29 Jul 2012 14:37:12 +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; }