pendingSessionCount property

  1. @override
int pendingSessionCount
override

The number of sessions waiting for a connection to become available.

Implementation

@override
int get pendingSessionCount =>
    nodes.map((a) => a.pendingSessionCount).fold<int>(0, (a, b) => a + b);