Committed by
Ben Copsey
added NSDictionary userInfo to ASINetworkQueue
Showing
2 changed files
with
6 additions
and
1 deletions
@@ -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 |
-
Please register or login to post a comment