Files
RestKit/Code/Network/RKNotifications.h
2011-01-12 15:05:22 -05:00

21 lines
585 B
Objective-C

//
// RKNotifications.h
// RestKit
//
// Created by Blake Watters on 9/24/09.
//
//
#import <Foundation/Foundation.h>
/******************
* Request Auditing
*
* RKClient exposes a set of NSNotifications that can be
* used to audit the request/response cycle of your application.
* This is useful for doing things like generating automatic logging
* for all your requests or sending the response times
*/
extern NSString* const kRKRequestSentNotification;
extern NSString* const kRKResponseReceivedNotification;
extern NSString* const kRKRequestFailedWithErrorNotification;