Files
RestKit/Code/Network/RKNotifications.h
Jeremy Ellison 6a5ee2af7e Revert "Remove per-file copyrights"
This reverts commit 91e7c6bb5e.
2011-01-12 15:27:19 -05:00

21 lines
636 B
Objective-C

//
// RKNotifications.h
// RestKit
//
// Created by Blake Watters on 9/24/09.
// Copyright 2009 Two Toasters. All rights reserved.
//
#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;