summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPresentKeyboardOperation.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink/SDLPresentKeyboardOperation.m')
-rw-r--r--SmartDeviceLink/SDLPresentKeyboardOperation.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLPresentKeyboardOperation.m b/SmartDeviceLink/SDLPresentKeyboardOperation.m
index b81284ebe..4899f8f46 100644
--- a/SmartDeviceLink/SDLPresentKeyboardOperation.m
+++ b/SmartDeviceLink/SDLPresentKeyboardOperation.m
@@ -23,6 +23,7 @@ NS_ASSUME_NONNULL_BEGIN
@interface SDLPresentKeyboardOperation()
+@property (strong, nonatomic) NSUUID *operationId;
@property (weak, nonatomic) id<SDLConnectionManagerType> connectionManager;
@property (weak, nonatomic) id<SDLKeyboardDelegate> keyboardDelegate;
@property (copy, nonatomic) NSString *initialText;
@@ -46,6 +47,7 @@ NS_ASSUME_NONNULL_BEGIN
_keyboardDelegate = keyboardDelegate;
_originalKeyboardProperties = originalKeyboardProperties;
_keyboardProperties = originalKeyboardProperties;
+ _operationId = [NSUUID UUID];
return self;
}
@@ -163,7 +165,7 @@ NS_ASSUME_NONNULL_BEGIN
#pragma mark - Property Overrides
- (nullable NSString *)name {
- return @"com.sdl.choicesetmanager.presentKeyboard";
+ return [NSString stringWithFormat:@"%@ - %@", self.class, self.operationId];
}
- (NSOperationQueuePriority)queuePriority {