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

Side by Side Diff: runtime/bin/socket_patch.dart

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. Created 7 years, 2 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 patch class RawServerSocket { 5 patch class RawServerSocket {
6 /* patch */ static Future<RawServerSocket> bind(address, 6 /* patch */ static Future<RawServerSocket> bind(address,
7 int port, 7 int port,
8 {int backlog: 0, 8 {int backlog: 0,
9 bool v6Only: false}) { 9 bool v6Only: false}) {
10 return _RawServerSocket.bind(address, port, backlog, v6Only); 10 return _RawServerSocket.bind(address, port, backlog, v6Only);
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 int available() => _socket.available(); 814 int available() => _socket.available();
815 815
816 List<int> read([int len]) { 816 List<int> read([int len]) {
817 if (_isMacOSTerminalInput) { 817 if (_isMacOSTerminalInput) {
818 var available = available(); 818 var available = available();
819 if (available == 0) return null; 819 if (available == 0) return null;
820 var data = _socket.read(len); 820 var data = _socket.read(len);
821 if (data == null || data.length < available) { 821 if (data == null || data.length < available) {
822 // Reading less than available from a Mac OS terminal indicate Ctrl-D. 822 // Reading less than available from a Mac OS terminal indicate Ctrl-D.
823 // This is interpreted as read closed. 823 // This is interpreted as read closed.
824 runAsync(() => _controller.add(RawSocketEvent.READ_CLOSED)); 824 scheduleMicrotask(() => _controller.add(RawSocketEvent.READ_CLOSED));
825 } 825 }
826 return data; 826 return data;
827 } else { 827 } else {
828 return _socket.read(len); 828 return _socket.read(len);
829 } 829 }
830 } 830 }
831 831
832 int write(List<int> buffer, [int offset, int count]) => 832 int write(List<int> buffer, [int offset, int count]) =>
833 _socket.write(buffer, offset, count); 833 _socket.write(buffer, offset, count);
834 834
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 if (_detachReady != null) { 1215 if (_detachReady != null) {
1216 _detachReady.complete(null); 1216 _detachReady.complete(null);
1217 } else { 1217 } else {
1218 if (_raw != null) { 1218 if (_raw != null) {
1219 _raw.shutdown(SocketDirection.SEND); 1219 _raw.shutdown(SocketDirection.SEND);
1220 _disableWriteEvent(); 1220 _disableWriteEvent();
1221 } 1221 }
1222 } 1222 }
1223 } 1223 }
1224 } 1224 }
OLDNEW
« no previous file with comments | « pkg/unittest/test/unittest_test_returning_future_using_runasync_test.dart ('k') | sdk/lib/_collection_dev/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698