Conforms to NSObject
Declared in EBRequestDelegate.h

Tasks

Instance Methods

request:progressChanged:

Specifies the current progress of this request.

- (void)request:(EBRequest *)request progressChanged:(float)progress

Parameters

request

The request being used.

progress

The current progress between 0.0 and 1.0.

In some cases the progress cannot be changed. See requestCannotReceiveProgressUpdates:

Discussion

Specifies the current progress of this request.

Declared In

EBRequestDelegate.h

requestCannotReceiveProgressUpdates:

This delegate method will be called when there’s no possibility to track the progress of a request. The request progress is based in the server response, and sometimes the server may not respond valid data. In that case, this delegate method will be called.

- (void)requestCannotReceiveProgressUpdates:(EBRequest *)request

Discussion

This delegate method will be called when there’s no possibility to track the progress of a request. The request progress is based in the server response, and sometimes the server may not respond valid data. In that case, this delegate method will be called.

Declared In

EBRequestDelegate.h

requestDidFinish:

Called when the request finishes. This could be after a successful completion, error or manual stop.

- (void)requestDidFinish:(EBRequest *)request

Discussion

Called when the request finishes. This could be after a successful completion, error or manual stop.

Declared In

EBRequestDelegate.h

requestDidStart:

Called when the request starts.

- (void)requestDidStart:(EBRequest *)request

Discussion

Called when the request starts.

Declared In

EBRequestDelegate.h