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.server; /*from www .jav a 2 s . c o m*/ import android.bluetooth.BluetoothDevice; public interface ServerEvent { void onReceive(BluetoothDevice device, byte[] message); void onConnect(BluetoothDevice device); void onErrorOpeningConnection(); void onDisconnect(BluetoothDevice device); }