mobilemelting
Committed by Ben Copsey

added NSDictionary userInfo to ASINetworkQueue

@@ -54,7 +54,8 @@ @@ -54,7 +54,8 @@
54 // Default for requests in the queue is NO 54 // Default for requests in the queue is NO
55 BOOL showAccurateProgress; 55 BOOL showAccurateProgress;
56 56
57 - 57 + // Storage container for additional queue information.
  58 + NSDictionary *userInfo;
58 } 59 }
59 60
60 // Convenience constructor 61 // Convenience constructor
@@ -105,4 +106,6 @@ @@ -105,4 +106,6 @@
105 @property (assign) id delegate; 106 @property (assign) id delegate;
106 @property (assign) BOOL showAccurateProgress; 107 @property (assign) BOOL showAccurateProgress;
107 @property (assign, readonly) int requestsCount; 108 @property (assign, readonly) int requestsCount;
  109 +@property (assign) NSDictionary *userInfo;
  110 +
108 @end 111 @end
@@ -20,6 +20,8 @@ @@ -20,6 +20,8 @@
20 20
21 @implementation ASINetworkQueue 21 @implementation ASINetworkQueue
22 22
  23 +@synthesize userInfo;
  24 +
23 - (id)init 25 - (id)init
24 { 26 {
25 self = [super init]; 27 self = [super init];