ConnectionScopeImpl constructor

ConnectionScopeImpl(
  1. ResourceManagerImpl _rcmgr,
  2. Limit limit,
  3. String name,
  4. Direction direction,
  5. bool useFd,
  6. MultiAddr remoteEndpoint, {
  7. List<ResourceScopeImpl>? edges,
})

Implementation

ConnectionScopeImpl(
  this._rcmgr, // Added rcmgr parameter
  Limit limit,
  String name,
  this.direction,
  this.useFd,
  this.remoteEndpoint, {
  List<ResourceScopeImpl>? edges, // Typically transient and system scopes
}) : super(limit, name, edges: edges);