We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3495341 commit cd8cee4Copy full SHA for cd8cee4
README.md
@@ -132,7 +132,7 @@ AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequ
132
[operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
133
NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
134
}];
135
-[operation start];
+[httpClient enqueueHTTPRequestOperation:operation];
136
```
137
138
### Streaming Request
0 commit comments