NSURLHandleClient — Mac OS X 10.0
This protocol defines methods that clients of NSURLHandle must implement to function as such. See Chapter 6 for more information.
NSURLHandle
@protocol NSURLHandleClient
// Instance Methods
- (void)URLHandle:(NSURLHandle *)sender resourceDataDidBecomeAvailable:(NSData *)newBytes;
- (void)URLHandleResourceDidBeginLoading:(NSURLHandle *)sender;
- (void)URLHandleResourceDidFinishLoading:(NSURLHandle *)sender;
- (void)URLHandleResourceDidCancelLoading:(NSURLHandle *)sender;
- (void)URLHandle:(NSURLHandle *)sender resourceDidFailLoadingWithReason:(NSString *)reason;
@end