incrementConnections method

void incrementConnections(
  1. String relayUrl
)

Increment active connection count for a relay.

Implementation

void incrementConnections(String relayUrl) {
  _activeConnections[relayUrl] = (_activeConnections[relayUrl] ?? 0) + 1;
}