BMNetworkReachabilityControllerDelegate Protocol Reference
Conforms to | NSObject |
Declared in | BMNetworkReachabilityController.h |
Overview
An instance of the BMNetworkReachabilityController class uses methods in this protocol to notify it’s delegate that the managed reachability references changed in some way.
Tasks
-
– networkReachabilityController:didAddReachability:
Notifies the receiver that a new reachability reference was added to the sender.
-
– networkReachabilityController:didRemoveReachability:
Notifies the receiver that an existing reachability reference was removed from the sender.
-
– networkReachabilityController:didChangeReachability:flags:
Notifies the receiver that the flags of a reachability reference managed by the sender did change.
Instance Methods
networkReachabilityController:didAddReachability:
Notifies the receiver that a new reachability reference was added to the sender.
- (void)networkReachabilityController:(BMNetworkReachabilityController *)networkReachabilityController didAddReachability:(SCNetworkReachabilityRef)reachability
Parameters
- networkReachabilityController
The network reachability controller.
- reachability
The added reachability reference.
Declared In
BMNetworkReachabilityController.h
networkReachabilityController:didChangeReachability:flags:
Notifies the receiver that the flags of a reachability reference managed by the sender did change.
- (void)networkReachabilityController:(BMNetworkReachabilityController *)networkReachabilityController didChangeReachability:(SCNetworkReachabilityRef)reachability flags:(SCNetworkReachabilityFlags)flags
Parameters
- networkReachabilityController
The network reachability controller.
- reachability
The reachability reference whos flags did change.
- flags
The new flags of reachability.
Declared In
BMNetworkReachabilityController.h
networkReachabilityController:didRemoveReachability:
Notifies the receiver that an existing reachability reference was removed from the sender.
- (void)networkReachabilityController:(BMNetworkReachabilityController *)networkReachabilityController didRemoveReachability:(SCNetworkReachabilityRef)reachability
Parameters
- networkReachabilityController
The network reachability controller.
- reachability
The removed reachability reference.
Declared In
BMNetworkReachabilityController.h