incrementConnections method
Increment active connection count for a relay.
Implementation
void incrementConnections(String relayUrl) {
_activeConnections[relayUrl] = (_activeConnections[relayUrl] ?? 0) + 1;
}
Increment active connection count for a relay.
void incrementConnections(String relayUrl) {
_activeConnections[relayUrl] = (_activeConnections[relayUrl] ?? 0) + 1;
}