diff --git a/AFNetworking/AFHTTPRequestOperation.h b/AFNetworking/AFHTTPRequestOperation.h index 12d0260..5125b18 100644 --- a/AFNetworking/AFHTTPRequestOperation.h +++ b/AFNetworking/AFHTTPRequestOperation.h @@ -22,10 +22,21 @@ #import -// Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain +/** + Indicates an error occured in AFNetworking. + + @discussion Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain. + */ extern NSString * const AFNetworkingErrorDomain; +/** + Posted when an operation begins executing. + */ extern NSString * const AFHTTPOperationDidStartNotification; + +/** + Posted when an operation finishes. + */ extern NSString * const AFHTTPOperationDidFinishNotification; /**