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; /* w ww. j av a 2s .c o m*/ import java.io.IOException; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothSocket; import com.mauriciotogneri.bluetooth.connection.kernel.ConnectionThread; class ServerLink extends ConnectionThread { private final ServerEvent serverEvent; public ServerLink(BluetoothSocket socket, ServerEvent serverEvent) throws IOException { super(socket); this.serverEvent = serverEvent; } @Override protected void onReceive(BluetoothDevice device, byte[] message) { this.serverEvent.onReceive(device, message); } @Override protected void onDisconnect(BluetoothDevice device) { this.serverEvent.onDisconnect(device); } }