mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
18 lines
393 B
Objective-C
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
|