Chromium Code Reviews| Index: runtime/bin/input_stream.dart |
| diff --git a/runtime/bin/input_stream.dart b/runtime/bin/input_stream.dart |
| index e6e66264a76627657ddbf8113596a5d4bef69f51..ed5384b80fe7b590777c11573db185036e9cd671 100644 |
| --- a/runtime/bin/input_stream.dart |
| +++ b/runtime/bin/input_stream.dart |
| @@ -67,6 +67,15 @@ interface InputStream { |
| void pipe(OutputStream output, [bool close]); |
| /** |
| + * Close the underlying communication channel to avoid getting any |
| + * more data. In normal situations where all data is read from the |
|
Mads Ager (google)
2011/12/23 08:35:40
A couple of commas would help me read this:
In no
Søren Gjesse
2012/01/02 11:51:17
Done.
|
| + * stream until the close handler is called calling [close] is not |
| + * required. When [close] is used the close handler will still be |
| + * called. |
| + */ |
| + void close(); |
| + |
| + /** |
| * Returns whether the stream is closed. There will be no more data |
| * to read. |
| */ |