summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLRPCResponseOperation.h
blob: ffb56e1ad2d82aa545249194c6d75c0b28ffb2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  SDLRPCResponseOperation.h
//  SmartDeviceLink
//
//  Created by Nicole on 2/20/19.
//  Copyright © 2019 smartdevicelink. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "SDLAsynchronousOperation.h"
#import "SDLLifecycleManager.h"

@protocol SDLConnectionManagerType;

NS_ASSUME_NONNULL_BEGIN

@interface SDLRPCResponseOperation : SDLAsynchronousOperation

@property (copy, nonatomic) __kindof SDLRPCMessage *rpc;

- (instancetype)initWithConnectionManager:(id<SDLConnectionManagerType>)connectionManager rpc:(__kindof SDLRPCMessage *)rpc;

@end

NS_ASSUME_NONNULL_END