Package com.medm.devicekit
Interface IScannerCallback
public interface IScannerCallback
Callback for receiving info about scan
- 
Method Summary
Modifier and TypeMethodDescriptionvoidonAmbiguousDeviceFound(IDeviceDescription[] devices) Called when new device is found, but Device Kit can't identify itvoidonDeviceFound(IDeviceDescription device) Called when new device is foundvoidCalled when scan is finished 
- 
Method Details
- 
onDeviceFound
Called when new device is found- Parameters:
 device- device which was found. Fields that would be provided are SKU, Address, Name, Title, Manufacturer, RSSI
 - 
onAmbiguousDeviceFound
Called when new device is found, but Device Kit can't identify it- Parameters:
 devices- possible device variants. IDeviceDescription fields that would be provided are SKU, Address, Name, Title, Manufacturer, RSSI
 - 
onScanFinished
void onScanFinished()Called when scan is finished 
 -