![]() |
Wahoo Fitness API
3.6.1
Documentation for the iPhone version of the Wahoo Fitness API.
|
Defines the interface for callback methods used by the WFAntFSClientBase. More...
#import <WFAntFSClientDelegate.h>
Instance Methods | |
(void) | - antFSClient:connectedDevice: |
Invoked when the ANT FS Client has connected to a host. More... | |
(void) | - antFSClient:encounteredError: |
Invoked when the ANT FS Client encounters an error. More... | |
(void) | - antFSClient:receivedResponse: |
Invoked when the ANT FS Client receives a response from the ANT device. More... | |
(void) | - antFSDevice:instanceCreated: |
Invoked when the WFAntFSDevice instance has been created. More... | |
Defines the interface for callback methods used by the WFAntFSClientBase.
|
optional |
Invoked when the ANT FS Client has connected to a host.
fsClient | The WFAntFSClientBase instance. |
bAuthenticated | TRUE if the host has authenticated, otherwise FALSE . |
|
optional |
Invoked when the ANT FS Client encounters an error.
fsClient | The WFAntFSClientBase instance. |
error | A WFAntFSClientError_t value indicating the type of error. |
|
optional |
Invoked when the ANT FS Client receives a response from the ANT device.
fsClient | The WFAntFSClient instance. |
responseCode | An ANTFS_RESPONSE value indicating the type of response. |
|
requiredinherited |
Invoked when the WFAntFSDevice instance has been created.
See the requestAntFSDevice:toDelegate: (WFHardwareConnector(AntFS)) method for documentation regarding instantiating a WFAntFSDevice.
fsDevice | The WFAntFSDevice instance. This instance is passed as the base class WFAntFSDevice. As this base class does not define functionallity useful to the application, the reference should be cast to the specific type appropriate for the WFAntFSDeviceType_t requested. For example, if WF_ANTFS_DEVTYPE_GARMIN_FR310 was specified in the requestAntFSDevice:toDelegate: (WFHardwareConnector(AntFS)) call, the specific type of the instance returned is WFGarminFR310Manager. |
bSuccess | TRUE if the instance was created, otherwise FALSE . |