Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
mobilemelting
2009-10-27 00:37:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
Ben Copsey
2009-10-31 02:45:52 +0800
Commit
93d9cde845a26400651cae8a13d04e6fc5be6f67
93d9cde8
1 parent
83cf8588
added NSDictionary userInfo to ASINetworkQueue
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
Classes/ASINetworkQueue.h
Classes/ASINetworkQueue.m
Classes/ASINetworkQueue.h
View file @
93d9cde
...
...
@@ -54,7 +54,8 @@
// Default for requests in the queue is NO
BOOL
showAccurateProgress
;
// Storage container for additional queue information.
NSDictionary
*
userInfo
;
}
// Convenience constructor
...
...
@@ -105,4 +106,6 @@
@property
(
assign
)
id
delegate
;
@property
(
assign
)
BOOL
showAccurateProgress
;
@property
(
assign
,
readonly
)
int
requestsCount
;
@property
(
assign
)
NSDictionary
*
userInfo
;
@end
...
...
Classes/ASINetworkQueue.m
View file @
93d9cde
...
...
@@ -20,6 +20,8 @@
@implementation
ASINetworkQueue
@synthesize
userInfo
;
-
(
id
)
init
{
self
=
[
super
init
];
...
...
Please
register
or
login
to post a comment