close 抽象方法

Future close(
  1. {bool force = false}
)

永久停止此 HttpServer 听取新的连接。这将使用 done 事件关闭 Stream 中的 HttpRequest。当服务器停止时,返回的 future 完成。对于使用 bindbindSecure 启动的服务器,这意味着所监听的端口不再使用。

如果 forcetrue,则将立即关闭活动连接。

实现

Future close({bool force = false});