dart-sdk/sdk/lib/vmservice/running_isolate.dart
Ryan Macnak c9f6e8695d Reapply "Partial static mode changes for vm-service and tests (part 3)."
Fix dynamic mode static warnings.

Bug: https://github.com/dart-lang/sdk/issues/31587
Change-Id: I966349f5409f911efacd11f08ffd469373bcd434
Reviewed-on: https://dart-review.googlesource.com/33540
Commit-Queue: Ryan Macnak <rmacnak@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
2018-01-10 01:28:39 +00:00

23 lines
640 B
Dart

// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of dart._vmservice;
class RunningIsolate implements MessageRouter {
final int portId;
final SendPort sendPort;
final String name;
RunningIsolate(this.portId, this.sendPort, this.name);
String get serviceId => 'isolates/$portId';
Future<Response> routeRequest(Message message) {
// Send message to isolate.
return message.sendToIsolate(sendPort);
}
void routeResponse(Message message) {}
}