blob: a3762b4e17b276146b27644cd1768e98a13e4a7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//
// SDLManagerDelegate.h
// SmartDeviceLink-iOS
//
// Created by Joel Fischer on 6/7/16.
// Copyright © 2016 smartdevicelink. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "SDLAudioStreamingState.h"
#import "SDLHMILevel.h"
#import "SDLSystemContext.h"
NS_ASSUME_NONNULL_BEGIN
@protocol SDLManagerDelegate <NSObject>
/**
* Called upon a disconnection from the remote system.
*/
- (void)managerDidDisconnect;
/**
* Called when the HMI level state of this application changes on the remote system. This is equivalent to the application's state changes in iOS such as foreground, background, or closed.
*
* @param oldLevel The previous level which has now been left.
* @param newLevel The current level.
*/
- (void)hmiLevel:(SDLHMILevel)oldLevel didChangeToLevel:(SDLHMILevel)newLevel;
@optional
/**
* Called when the audio streaming state of this application changes on the remote system. This refers to when streaming audio is audible to the user.
*
* @param oldState The previous state which has now been left.
* @param newState The current state.
*/
- (void)audioStreamingState:(nullable SDLAudioStreamingState)oldState didChangeToState:(SDLAudioStreamingState)newState;
/**
* Called when the system context of this application changes on the remote system. This refers to whether or not a user-initiated interaction is in progress, and if so, what it is.
*
* @param oldContext The previous context which has now been left.
* @param newContext The current context.
*/
- (void)systemContext:(nullable SDLSystemContext)oldContext didChangeToContext:(SDLSystemContext)newContext;
@end
NS_ASSUME_NONNULL_END
|