blob: c52a07908d28380285e3c5c302b459df74e6c48a [file] [log] [blame] [edit]
// Copyright (c) 2019, 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.
import 'dart:io';
/// A server for Dart Devtools.
class DevTools {
final String hostname;
final int port;
final HttpServer _server;
Uri get uri => Uri(scheme: 'http', host: hostname, port: port);
/// Null until [close] is called.
///
/// All subsequent calls to [close] will return this future.
Future<void>? _closed;
DevTools(this.hostname, this.port, this._server);
Future<void> close() => _closed ??= _server.close();
}