Chromium Code Reviews| Index: sdk/lib/io/http.dart |
| diff --git a/sdk/lib/io/http.dart b/sdk/lib/io/http.dart |
| index 47be232c868a1d46ca93dadfd8587eac85e13ada..428ce56bee7984cc940e0a1294d34e3f4a26397c 100644 |
| --- a/sdk/lib/io/http.dart |
| +++ b/sdk/lib/io/http.dart |
| @@ -873,6 +873,12 @@ abstract class HttpClient { |
| static const int DEFAULT_HTTP_PORT = 80; |
| static const int DEFAULT_HTTPS_PORT = 443; |
| + /** |
| + * Get and set the idle timeout of non-active keep-alive connections. The |
|
Søren Gjesse
2013/05/21 08:46:02
keep-alive -> persistent (keep-alive)
Anders Johnsen
2013/05/21 09:01:09
Done.
|
| + * default value is 15 seconds. |
| + */ |
| + Duration idleTimeout; |
| + |
| factory HttpClient() => new _HttpClient(); |
| /** |