close 抽象方法
- {bool force = false}
永久停止此 HttpServer 听取新的连接。这将使用 done 事件关闭 Stream 中的 HttpRequest。当服务器停止时,返回的 future 完成。对于使用 bind 或 bindSecure 启动的服务器,这意味着所监听的端口不再使用。
如果 force
为 true
,则将立即关闭活动连接。
实现
Future close({bool force = false});
永久停止此 HttpServer 听取新的连接。这将使用 done 事件关闭 Stream 中的 HttpRequest。当服务器停止时,返回的 future 完成。对于使用 bind 或 bindSecure 启动的服务器,这意味着所监听的端口不再使用。
如果 force
为 true
,则将立即关闭活动连接。
Future close({bool force = false});