Trying to set a request Timeout Interval on Restkit.
This post mentions HTTClient, but HTTPClient does NOT seem to have a way to set a timeout interval. Request timeout in restkit 0.20.0
Does anyone know how to set an interval?
There isn't direct access to it. You should really ask why you want to set a custom timeout.
If you do need to change it, you should subclass RKObjectManager
and override requestWithObject:
. Your implementation can just call super and then edit the resulting mutable request.
The following worked for me in RestKit 0.20.3: I construct the NSMutableRequest myself and set the timeout on this request. Unfortunately there is no way to set the default request timeout in RestKit 0.20.x due to AFNetworking's policy to not expose this property.
NSMutableURLRequest *request = [objectManager requestWithObject:nil method:RKRequestMethodGET path:@"test.json" parameters:nil];
[request setTimeoutInterval:300]; // set the timeout for this request to 5 minutes
RKManagedObjectRequestOperation *op = [[RKObjectManager sharedManager] managedObjectRequestOperationWithRequest:request managedObjectContext:[[[RKObjectManager sharedManager] managedObjectStore] mainQueueManagedObjectContext] success:^(RKObjectRequestOperation *operation, RKMappingResult *mappingResult) {
NSLog(@"Success, %d results loaded", [mappingResult count]);
} failure:^(RKObjectRequestOperation *operation, NSError *error) {
NSLog(@"Fail");
}];
[[RKObjectManager sharedManager] enqueueObjectRequestOperation:op];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With