Declared in RKRequest.h

Overview

Lifecycle events for RKRequests

Tasks

Instance Methods

request:didFailLoadWithError:

Sent when a request has failed due to an error

- (void)request:(RKRequest *)request didFailLoadWithError:(NSError *)error

Declared In

RKRequest.h

request:didLoadResponse:

Sent when a request has finished loading

- (void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response

Declared In

RKRequest.h

request:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:

Sent when a request has uploaded data to the remote site

- (void)request:(RKRequest *)request didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite

Declared In

RKRequest.h

requestDidCancelLoad:

Sent to the delegate when a request was cancelled

- (void)requestDidCancelLoad:(RKRequest *)request

Declared In

RKRequest.h

requestDidStartLoad:

Sent when a request has started loading

- (void)requestDidStartLoad:(RKRequest *)request

Declared In

RKRequest.h

requestDidTimeout:

Sent to the delegate when a request has timed out. This is sent when a backgrounded request expired before completion.

- (void)requestDidTimeout:(RKRequest *)request

Declared In

RKRequest.h