// // SDLSequentialRPCRequestOperation.h // SmartDeviceLink // // Created by Joel Fischer on 1/31/18. // Copyright © 2018 smartdevicelink. All rights reserved. // #import #import "SDLAsynchronousOperation.h" #import "SDLLifecycleManager.h" @protocol SDLConnectionManagerType; NS_ASSUME_NONNULL_BEGIN @interface SDLSequentialRPCRequestOperation : SDLAsynchronousOperation - (instancetype)initWithConnectionManager:(id)connectionManager requests:(NSArray *)requests progressHandler:(nullable SDLMultipleSequentialRequestProgressHandler)progressHandler completionHandler:(nullable SDLMultipleRequestCompletionHandler)completionHandler; @end NS_ASSUME_NONNULL_END