00001
00005
00006
00007
00008
00009
00010
00011
00012
00018 @protocol HRResponseDelegate <NSObject>
00019 @optional
00027 - (void)restConnection:(NSURLConnection *)connection didReturnResource:(id)resource object:(id)object;
00028
00036 - (void)restConnection:(NSURLConnection *)connection didFailWithError:(NSError *)error object:(id)object;
00037
00045 - (void)restConnection:(NSURLConnection *)connection didReceiveResponse:(NSHTTPURLResponse *)response object:(id)object;
00046
00055 - (void)restConnection:(NSURLConnection *)connection didReceiveError:(NSError *)error response:(NSHTTPURLResponse *)response object:(id)object;
00056
00065 - (void)restConnection:(NSURLConnection *)connection didReceiveParseError:(NSError *)error responseBody:(NSString *)body object:(id)object;
00066 @end