Files
sdk/runtime/bin/socket_stream.dart
T
ager@google.com 1159462fc6 Switch from interfaces to abstract classes in dart:io.
Add a bunch of default argument values to the abstract classes
so they are picked up by dartdoc.

R=sgjesse@google.com
BUG=

Review URL: https://codereview.chromium.org//10938010

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@12484 260f80e4-7a28-3924-810f-c04153c831b5
2012-09-18 10:54:37 +00:00

26 lines
832 B
Dart

// Copyright (c) 2012, 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.
/**
* [SocketInputStream] makes it possible to stream over data received
* from a [Socket].
*/
abstract class SocketInputStream implements InputStream {
/**
* Create a [SocketInputStream] for streaming from a [Socket].
*/
factory SocketInputStream(Socket socket) => new _SocketInputStream(socket);
}
/**
* [SocketOutputStream] makes it possible to stream data to a
* [Socket].
*/
abstract class SocketOutputStream implements OutputStream {
/**
* Create a [SocketOutputStream] for streaming to a [Socket].
*/
factory SocketOutputStream(Socket socket) => new _SocketOutputStream(socket);
}