controlWebServer method
Control the web server that the service protocol is accessed through. enable
is used as a toggle to enable or disable the web server servicing requests. If silenceOutput
is provided and is true, the server will not output information to the console.
Implementation
static Future<ServiceProtocolInfo> controlWebServer( {bool enable = false, bool? silenceOutput}) async { // TODO: When NNBD is complete, delete the following line. ArgumentError.checkNotNull(enable, 'enable'); // Port to receive response from service isolate. final RawReceivePort receivePort = new RawReceivePort(null, 'Service.controlWebServer'); final Completer<Uri> uriCompleter = new Completer<Uri>(); receivePort.handler = (Uri uri) => uriCompleter.complete(uri); // Request the information from the service isolate. _webServerControl(receivePort.sendPort, enable, silenceOutput); // Await the response from the service isolate. Uri uri = await uriCompleter.future; // Close the port. receivePort.close(); return new ServiceProtocolInfo(uri); }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-developer/Service/controlWebServer.html