Back to project page bluetooth.
The source code is released under:
MIT License
If you think the Android project bluetooth 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 com.mauriciotogneri.bluetooth.connection.client; //from w w w. j a va 2s. co m public interface ClientEvent { void onReceive(byte[] message); void onConnect(); void onErrorConnecting(); void onDisconnect(); }