ADC Home > Reference Library > Reference > Hardware & Drivers > Bluetooth > Bluetooth Framework Reference
|
NSObject(IOBluetoothHostControllerDelegate) |
Extends Class: | NSObject |
Declared In: |
This category on NSObject describes the delegate methods for the IOBluetoothHostController object. All methods are optional, but it is highly recommended you implement them all. Do NOT invoke remote name requests on found IOBluetoothDevice objects unless the controller object has been stopped. Doing so may deadlock your process.
controllerClassOfDeviceReverted: |
- (void) controllerClassOfDeviceReverted:(id)sender;
sender
Controller object that sent this delegate message.
This delegate gets invoked when the Class of Device has been changed with the -setClassOfDevice:forTimeInterval: method, and the specified time interval expires.
readLinkQualityForDeviceComplete:device:info:error: |
- (void) readLinkQualityForDeviceComplete:(id)controller device:(IOBluetoothDevice*)device info:(BluetoothHCILinkQualityInfo*)info error:(IOReturn)error;
sender
Controller object that sent this delegate message.
This delegate gets invoked when an read link quality command complete event occurs. This could occur because you invoked it by issuing an -readLinkQualityForDevice: command, or someone else did from another app on the same controller.
readRSSIForDeviceComplete:device:info:error: |
RSSIForDevice:device:info:error:
- (void) readRSSIForDeviceComplete:(id)controller device:(IOBluetoothDevice*)device info:(BluetoothHCIRSSIInfo*)info error:(IOReturn)error;
sender
Controller object that sent this delegate message.
This delegate gets invoked when an RSSI command complete event occurs. This could occur because you invoked it by issuing an -readRSSIForDevice: command, or someone else did from another app on the same controller.
RSSIForDevice:device:info:error: |
readRSSIForDeviceComplete:device:info:error:
- (void) readRSSIForDeviceComplete:(id)controller device:(IOBluetoothDevice*)device info:(BluetoothHCIRSSIInfo*)info error:(IOReturn)error;
sender
Controller object that sent this delegate message.
This delegate gets invoked when an RSSI command complete event occurs. This could occur because you invoked it by issuing an -readRSSIForDevice: command, or someone else did from another app on the same controller.
|
Last Updated: 2008-08-07