shouldClose method

bool shouldClose()
inherited

Implementation

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