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

Unified Diff: runtime/vm/service/client.dart

Issue 1143783003: Add the streamListen and streamCancel rpcs to the vm service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cleanups pre-review Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/service/client.dart
diff --git a/runtime/vm/service/client.dart b/runtime/vm/service/client.dart
index 56051f8deaf13c873ffb2e0bc2ac98767372f1cd..c8a374a9aa70969b5c9ec32ffab08d2ff30c7126 100644
--- a/runtime/vm/service/client.dart
+++ b/runtime/vm/service/client.dart
@@ -8,6 +8,7 @@ part of vmservice;
abstract class Client {
final VMService service;
final bool sendEvents;
+ final Set<String> streams = new Set<String>();
Client(this.service, { bool sendEvents: true })
: this.sendEvents = sendEvents {

Powered by Google App Engine
This is Rietveld 408576698