mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
16 lines
342 B
Objective-C
16 lines
342 B
Objective-C
//
|
|
// HTTPTimeoutSetting.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 4/6/12.
|
|
// Copyright 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
|
|
@interface HTTPTimeoutSetting : NSObject {
|
|
NSTimeInterval timeoutSeconds;
|
|
}
|
|
- (id)init;
|
|
- (id)initWithTimeoutSeconds:(NSTimeInterval)theTimeoutSeconds;
|
|
- (NSTimeInterval)timeoutSeconds;
|
|
@end
|