1 // 2 // MPDispatchRequest.h 3 // MPMessagePack 4 // 5 // Created by Gabriel on 10/14/15. 6 // Copyright © 2015 Gabriel Handford. All rights reserved. 7 // 8 9 #import <Foundation/Foundation.h> 10 11 @interface MPDispatchRequest : NSObject 12 13 @property (readonly) dispatch_semaphore_t semaphore; 14 15 @property NSError *error; 16 @property id result; 17 18 + (instancetype)dispatchRequest; 19 20 @end