We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877f134 commit fa53651Copy full SHA for fa53651
pkgs/http/lib/retry.dart
@@ -10,6 +10,10 @@ import 'package:async/async.dart';
10
import 'http.dart';
11
12
/// An HTTP client wrapper that automatically retries failing requests.
13
+///
14
+/// NOTE: [RetryClient] makes a copy of the request data in order to support
15
+/// resending it. This can cause a lot of memory usage when sending a large
16
+/// [StreamedRequest].
17
class RetryClient extends BaseClient {
18
/// The wrapped client.
19
final Client _inner;
0 commit comments