summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/Requests/SDLRPCRequestNotification.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/Requests/SDLRPCRequestNotification.h')
-rw-r--r--SmartDeviceLink/Requests/SDLRPCRequestNotification.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/SmartDeviceLink/Requests/SDLRPCRequestNotification.h b/SmartDeviceLink/Requests/SDLRPCRequestNotification.h
new file mode 100644
index 000000000..e78cd2981
--- /dev/null
+++ b/SmartDeviceLink/Requests/SDLRPCRequestNotification.h
@@ -0,0 +1,51 @@
+//
+// SDLRPCRequestNotification.h
+// SmartDeviceLink
+//
+// Created by Nicole on 2/14/19.
+// Copyright © 2019 smartdevicelink. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+
+@class SDLRPCRequest;
+
+NS_ASSUME_NONNULL_BEGIN
+
+/**
+ * A NSNotification object that makes retrieving internal SDLRPCRequest data easier
+ */
+@interface SDLRPCRequestNotification : NSNotification
+
+/**
+ * The request to be included in the userinfo dictionary
+ */
+@property (copy, nonatomic, readonly) __kindof SDLRPCRequest *request;
+
+/**
+ * Create an NSNotification object containing an SDLRPCRequest
+ *
+ * @param name The NSNotification name
+ * @param object The NSNotification object
+ * @param request The SDLRPCRequest payload
+ * @return The NSNotification
+ */
+- (instancetype)initWithName:(NSString *)name object:(nullable id)object rpcRequest:(__kindof SDLRPCRequest *)request;
+
+/**
+ * Returns whether or not the containing response is equal to a class, not including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isRequestMemberOfClass:(Class)aClass;
+
+/**
+ * Returns whether or not the containing response is a kind of class, including subclasses.
+ *
+ * @param aClass the class you are questioning
+ */
+- (BOOL)isRequestKindOfClass:(Class)aClass;
+
+@end
+
+NS_ASSUME_NONNULL_END