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

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

Issue 10832188: Add an OutputStream.closed getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 4 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 | « runtime/bin/http_impl.dart ('k') | runtime/bin/output_stream.dart » ('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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 /** 5 /**
6 * Default implementation of [ListInputStream]. 6 * Default implementation of [ListInputStream].
7 */ 7 */
8 class _ListInputStream extends _BaseDataInputStream implements ListInputStream { 8 class _ListInputStream extends _BaseDataInputStream implements ListInputStream {
9 _ListInputStream() : _bufferList = new _BufferList(); 9 _ListInputStream() : _bufferList = new _BufferList();
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 copyBuffer: false); 64 copyBuffer: false);
65 } 65 }
66 66
67 void flush() { 67 void flush() {
68 // Nothing to do on a list output stream. 68 // Nothing to do on a list output stream.
69 } 69 }
70 70
71 void close() { 71 void close() {
72 if (_streamMarkedClosed) throw new StreamException.streamClosed(); 72 if (_streamMarkedClosed) throw new StreamException.streamClosed();
73 _streamMarkedClosed = true; 73 _streamMarkedClosed = true;
74 _checkScheduleCallbacks();
74 } 75 }
75 76
76 void destroy() { 77 void destroy() {
77 close(); 78 close();
78 } 79 }
79 80
80 void set onData(void callback()) { 81 void set onData(void callback()) {
81 _clientDataHandler = callback; 82 _clientDataHandler = callback;
82 _checkScheduleCallbacks(); 83 _checkScheduleCallbacks();
83 } 84 }
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 _scheduledNoPendingWriteCallback = 138 _scheduledNoPendingWriteCallback =
138 new Timer(0, issueNoPendingWriteCallback); 139 new Timer(0, issueNoPendingWriteCallback);
139 } 140 }
140 141
141 } else if (_clientCloseHandler != null) { 142 } else if (_clientCloseHandler != null) {
142 _scheduledCloseCallback = new Timer(0, issueCloseCallback); 143 _scheduledCloseCallback = new Timer(0, issueCloseCallback);
143 _closeCallbackCalled = true; 144 _closeCallbackCalled = true;
144 } 145 }
145 } 146 }
146 147
148 bool get closed() => _streamMarkedClosed;
149
147 _BufferList _bufferList; 150 _BufferList _bufferList;
148 bool _streamMarkedClosed = false; 151 bool _streamMarkedClosed = false;
149 bool _closeCallbackCalled = false; 152 bool _closeCallbackCalled = false;
150 Timer _scheduledDataCallback; 153 Timer _scheduledDataCallback;
151 Timer _scheduledNoPendingWriteCallback; 154 Timer _scheduledNoPendingWriteCallback;
152 Timer _scheduledCloseCallback; 155 Timer _scheduledCloseCallback;
153 Function _clientDataHandler; 156 Function _clientDataHandler;
154 Function _clientNoPendingWriteHandler; 157 Function _clientNoPendingWriteHandler;
155 Function _clientCloseHandler; 158 Function _clientCloseHandler;
156 } 159 }
OLDNEW
« no previous file with comments | « runtime/bin/http_impl.dart ('k') | runtime/bin/output_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698