All three values are, in principle, independent of each other (though there may be some relationships). A value for one parameter should not be interpreted from the value of another parameter.
There are no guarantees about the timeliness or latency of the SDLOnHMIStatus notification. Therefore, for example, information such as SDLAudioStreamingState may not indicate that the audio stream became inaudible to the user exactly when the SDLOnHMIStatus notification was received.
@since SDL 1.0
SDLHMILevel in effect for the application
@property (nonatomic, strong) SDLHMILevel _Nonnull hmiLevel;
var hmiLevel: SDLHMILevel { get set }
Current state of audio streaming for the application. When this parameter has a value of NOT_AUDIBLE, the application must stop streaming audio to SDL.
Informs app whether any currently streaming audio is audible to user (AUDIBLE) or not (NOT_AUDIBLE). A value of NOT_AUDIBLE means that either the application’s audio will not be audible to the user, or that the application’s audio should not be audible to the user (i.e. some other application on the mobile device may be streaming audio and the application’s audio would be blended with that other audio).
@property (nonatomic, strong) SDLAudioStreamingState _Nonnull audioStreamingState;
var audioStreamingState: SDLAudioStreamingState { get set }
Current availability of video streaming for the application. When this parameter is NOT_STREAMABLE, the application must stop video streaming to SDL.
@property (nonatomic, strong, nullable) SDLVideoStreamingState videoStreamingState;
var videoStreamingState: SDLVideoStreamingState? { get set }
Whether a user-initiated interaction is in-progress (VRSESSION or MENU), or not (MAIN)
@property (nonatomic, strong) SDLSystemContext _Nonnull systemContext;
var systemContext: SDLSystemContext { get set }
This is the unique ID assigned to the window that this RPC is intended for. If this param is not included, it will be assumed that this request is specifically for the main window on the main display. - see: PredefinedWindows enum.
@since SDL 6.0
@property (nonatomic, strong, nullable) NSNumber<SDLUInt> *windowID;
var windowID: (NSNumber & SDLUInt)? { get set }
Initialize an SDLOnHMIStatus RPC with initial parameters
- (nonnull instancetype)
initWithHMILevel:(nonnull SDLHMILevel)hmiLevel
systemContext:(nonnull SDLSystemContext)systemContext
audioStreamingState:(nonnull SDLAudioStreamingState)audioStreamingState
videoStreamingState:(nullable SDLVideoStreamingState)videoStreamingState
windowID:(nullable NSNumber<SDLUInt> *)windowID;
init(hmiLevel: SDLHMILevel, systemContext: SDLSystemContext, audioStreamingState: SDLAudioStreamingState, videoStreamingState: SDLVideoStreamingState?, windowID: (NSNumber & SDLUInt)?)
The HMI level
The system context
The ability for an audio app to be heard
The ability for a video streaming app to stream
Which window this status relates to