Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(646)

Side by Side Diff: pkg/http/lib/src/client.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/http/lib/src/base_request.dart ('k') | pkg/http/lib/src/io_client.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library client; 5 library client;
6 6
7 import 'dart:async';
7 import 'dart:io'; 8 import 'dart:io';
8 import 'dart:scalarlist'; 9 import 'dart:scalarlist';
9 10
10 import 'base_client.dart'; 11 import 'base_client.dart';
11 import 'base_request.dart'; 12 import 'base_request.dart';
12 import 'io_client.dart'; 13 import 'io_client.dart';
13 import 'streamed_response.dart'; 14 import 'streamed_response.dart';
14 import 'response.dart'; 15 import 'response.dart';
15 import 'utils.dart'; 16 import 'utils.dart';
16 17
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 Future<Uint8List> readBytes(url, {Map<String, String> headers}); 90 Future<Uint8List> readBytes(url, {Map<String, String> headers});
90 91
91 /// Sends an HTTP request and asynchronously returns the response. 92 /// Sends an HTTP request and asynchronously returns the response.
92 Future<StreamedResponse> send(BaseRequest request); 93 Future<StreamedResponse> send(BaseRequest request);
93 94
94 /// Closes the client and cleans up any resources associated with it. It's 95 /// Closes the client and cleans up any resources associated with it. It's
95 /// important to close each client when it's done being used; failing to do so 96 /// important to close each client when it's done being used; failing to do so
96 /// can cause the Dart process to hang. 97 /// can cause the Dart process to hang.
97 void close(); 98 void close();
98 } 99 }
OLDNEW
« no previous file with comments | « pkg/http/lib/src/base_request.dart ('k') | pkg/http/lib/src/io_client.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698