summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCMessageType.h
blob: 383da11ff475ee2f1ef4918065f2f97bcb5acec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//  SDLRPCMessageType.h
//

#import <Foundation/Foundation.h>

/**
 The type of RPC message

 - SDLRPCMessageTypeRequest: A request from the app to the IVI system
 - SDLRPCMessageTypeResponse: A response from the IVI system to the app
 - SDLRPCMessageTypeNotification: A notification from the IVI system to the app
 */
typedef NS_ENUM(Byte, SDLRPCMessageType) {
    SDLRPCMessageTypeRequest = 0,
    SDLRPCMessageTypeResponse,
    SDLRPCMessageTypeNotification
};