MBXReachabilityInterface_Internal.h 497 B

123456789101112131415
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. #import <MapboxCommon/MBXNetworkStatus_Internal.h>
  4. #import <MapboxCommon/MBXReachabilityChanged_Internal.h>
  5. NS_SWIFT_NAME(ReachabilityInterface)
  6. @protocol MBXReachabilityInterface
  7. - (uint64_t)addListenerForListener:(nonnull MBXReachabilityChanged)listener;
  8. - (BOOL)removeListenerForId:(uint64_t)id;
  9. - (BOOL)isReachable;
  10. - (MBXNetworkStatus)currentNetworkStatus;
  11. - (void)start;
  12. - (void)stop;
  13. @end