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

Side by Side Diff: pkg/analysis_server/lib/src/server/stdio_server.dart

Issue 850333002: Revert "Revert "Make stdout/stderr async"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 | « no previous file | runtime/bin/io_natives.cc » ('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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 stdio.server; 5 library stdio.server;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 9
10 import 'package:analysis_server/src/channel/byte_stream_channel.dart'; 10 import 'package:analysis_server/src/channel/byte_stream_channel.dart';
(...skipping 18 matching lines...) Expand all
29 StdioAnalysisServer(this.socketServer); 29 StdioAnalysisServer(this.socketServer);
30 30
31 /** 31 /**
32 * Begin serving requests over stdio. 32 * Begin serving requests over stdio.
33 * 33 *
34 * Return a future that will be completed when stdin closes. 34 * Return a future that will be completed when stdin closes.
35 */ 35 */
36 Future serveStdio() { 36 Future serveStdio() {
37 ByteStreamServerChannel serverChannel = new ByteStreamServerChannel( 37 ByteStreamServerChannel serverChannel = new ByteStreamServerChannel(
38 stdin, 38 stdin,
39 stdout.nonBlocking, 39 stdout,
40 socketServer.instrumentationService); 40 socketServer.instrumentationService);
41 socketServer.createAnalysisServer(serverChannel); 41 socketServer.createAnalysisServer(serverChannel);
42 return serverChannel.closed; 42 return serverChannel.closed;
43 } 43 }
44 } 44 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698