Back to project page LibGeppa.
The source code is released under:
Apache License
If you think the Android project LibGeppa listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.cattaka.libgeppa.bluetooth; /* w ww. ja v a2 s . c o m*/ import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public interface IBluetoothSocket { public void close() throws IOException; public void connect() throws IOException; public InputStream getInputStream() throws IOException; public OutputStream getOutputStream() throws IOException; }