blob: a7072b9ba9e0149444af4d58de0c0392ab5cc192 [file] [log] [blame]
// 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 observatory;
/// State for a running isolate.
class Isolate {
final int id;
final String name;
Isolate(this.id, this.name);
String toString() => '$id $name';
}