summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLConnectionManagerType.h
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2016-07-19 16:22:03 -0400
committerJoel Fischer <joeljfischer@gmail.com>2016-07-19 16:22:03 -0400
commitc469e56a53e6f546204188793793f0e4cb630985 (patch)
treea04c5031ebb06db8d1a3bde8528a063bd4bdbe7c /SmartDeviceLink/SDLConnectionManagerType.h
parent9b3b203ab262a2ac9cefb6f6f6db459a2cb4063a (diff)
downloadsdl_ios-c469e56a53e6f546204188793793f0e4cb630985.tar.gz
Shift most SDLManager code into private SDLLifecycleManager for testing purposes
* Change the name of SDLManagerSpec to SDLLifecycleManager spec and start on a few tests * Change a bunch of string constants to have more descriptive typedef’d types * SDLConnectionManagerType protocol now only has one method, a specific one for managers to bypass the `ready` restriction on the public methods
Diffstat (limited to 'SmartDeviceLink/SDLConnectionManagerType.h')
-rw-r--r--SmartDeviceLink/SDLConnectionManagerType.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLConnectionManagerType.h b/SmartDeviceLink/SDLConnectionManagerType.h
index abbd9e3af..6571f993e 100644
--- a/SmartDeviceLink/SDLConnectionManagerType.h
+++ b/SmartDeviceLink/SDLConnectionManagerType.h
@@ -14,11 +14,9 @@
NS_ASSUME_NONNULL_BEGIN
-// TODO: May want to rename
@protocol SDLConnectionManagerType <NSObject>
-- (void)sendRequest:(__kindof SDLRPCRequest *)request;
-- (void)sendRequest:(__kindof SDLRPCRequest *)request withCompletionHandler:(nullable SDLRequestCompletionHandler)block;
+- (void)sendManagerRequest:(__kindof SDLRPCRequest *)request withCompletionHandler:(nullable SDLRequestCompletionHandler)block;
@end