close method
Closes the holepuncher
Implementation
Future<void> close() async {
await _closedMutex.synchronized(() {
_closed = true;
});
_ctx.complete();
return _ctx.future;
}
Closes the holepuncher
Future<void> close() async {
await _closedMutex.synchronized(() {
_closed = true;
});
_ctx.complete();
return _ctx.future;
}