Back to project page GlassToPhoneBluetooth.
The source code is released under:
MIT License
If you think the Android project GlassToPhoneBluetooth 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 ktlab.lib.connection; public interface ConnectionCallback { public void onConnectComplete(); public void onConnectionFailed(); public void onDataSendComplete(int id); public void onCommandReceived(ConnectionCommand command); }