IService Listener
IServiceListener
Description :
An interface for notifying BluetoothProfile IPC clients when they have been connected or disconnected to the service.
Example of use :
- Implementation :
IServiceListener mServiceListener = new IServiceListener() { public void onServiceConnected(String address) { // code ... } }Content copied to clipboard - Init this callback by calling :
STWBLEManager.getInstance.setServiceListener(mServiceListener)Content copied to clipboard