shouldClose method
Implementation
bool shouldClose() {
openConnections--;
if (openConnections == 0) {
openCompleter = null;
}
return openConnections == 0;
}
bool shouldClose() {
openConnections--;
if (openConnections == 0) {
openCompleter = null;
}
return openConnections == 0;
}