// // SDLLifecycleMobileHMIStateHandler.h // SmartDeviceLink // // Created by Joel Fischer on 6/9/20. // Copyright © 2020 smartdevicelink. All rights reserved. // #import @protocol SDLConnectionManagerType; NS_ASSUME_NONNULL_BEGIN @interface SDLLifecycleMobileHMIStateHandler : NSObject - (instancetype)init NS_UNAVAILABLE; /// Initialize the object /// @param connectionManager The connection manager to send RPCs - (instancetype)initWithConnectionManager:(id)connectionManager; /// Stops the manager from checking for app background / foreground notifications. - (void)stop; @end NS_ASSUME_NONNULL_END