summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLNotificationDispatcher.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLNotificationDispatcher.m')
-rw-r--r--SmartDeviceLink/SDLNotificationDispatcher.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLNotificationDispatcher.m b/SmartDeviceLink/SDLNotificationDispatcher.m
index 809f3170f..f5232a194 100644
--- a/SmartDeviceLink/SDLNotificationDispatcher.m
+++ b/SmartDeviceLink/SDLNotificationDispatcher.m
@@ -119,6 +119,10 @@ NS_ASSUME_NONNULL_BEGIN
[self postRPCResponseNotification:SDLDidReceiveChangeRegistrationResponse response:response];
}
+- (void)onCloseApplicationResponse:(SDLCloseApplicationResponse *)response {
+ [self postRPCResponseNotification:SDLDidReceiveCloseApplicationResponse response:response];
+}
+
- (void)onCreateInteractionChoiceSetResponse:(SDLCreateInteractionChoiceSetResponse *)response {
[self postRPCResponseNotification:SDLDidReceiveCreateInteractionChoiceSetResponse response:response];
}
@@ -341,6 +345,10 @@ NS_ASSUME_NONNULL_BEGIN
[self postRPCRequestNotification:SDLDidReceiveChangeRegistrationRequest request:request];
}
+- (void)onCloseApplication:(SDLCloseApplication *)request {
+ [self postRPCRequestNotification:SDLDidReceiveCloseApplicationRequest request:request];
+}
+
- (void)onCreateInteractionChoiceSet:(SDLCreateInteractionChoiceSet *)request {
[self postRPCRequestNotification:SDLDidReceiveCreateInteractionChoiceSetRequest request:request];
}