closeClusterServers static method

Future<void> closeClusterServers()

关闭服务器集群

Implementation

static Future<void> closeClusterServers() async {
  for (var wk in _workerList) {
    await wk.close();
  }
}