arq_restore/cocoastack/aws/AWSQueryRequest.h
2014-07-28 14:20:07 -04:00

18 lines
393 B
Objective-C

//
// Created by Stefan Reitshamer on 9/16/12.
//
//
@class AWSQueryResponse;
@interface AWSQueryRequest : NSObject {
NSString *method;
NSURL *url;
BOOL retryOnTransientError;
}
- (id)initWithMethod:(NSString *)theMethod url:(NSURL *)theURL retryOnTransientError:(BOOL)theRetryOnTransientError;
- (NSString *)errorDomain;
- (AWSQueryResponse *)execute:(NSError **)error;
@end