-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathio_streamed_response.dart
37 lines (32 loc) · 1.28 KB
/
io_streamed_response.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:io';
import 'base_request.dart';
import 'streamed_response.dart';
/// An HTTP response where the response body is received asynchronously after
/// the headers have been received.
class IOStreamedResponse extends StreamedResponse {
final HttpClientResponse _inner;
/// Creates a new streaming response.
///
/// [stream] should be a single-subscription stream.
IOStreamedResponse(Stream<List<int>> stream, int statusCode,
{int contentLength,
BaseRequest request,
Map<String, String> headers = const {},
bool isRedirect = false,
bool persistentConnection = true,
String reasonPhrase,
HttpClientResponse inner})
: _inner = inner,
super(stream, statusCode,
contentLength: contentLength,
request: request,
headers: headers,
isRedirect: isRedirect,
persistentConnection: persistentConnection,
reasonPhrase: reasonPhrase);
/// Detaches the underlying socket from the HTTP server.
Future<Socket> detachSocket() async => _inner.detachSocket();
}