StreamScopeImpl constructor

StreamScopeImpl(
  1. ResourceManagerImpl _rcmgr,
  2. Limit limit,
  3. String name,
  4. Direction direction,
  5. PeerScopeImpl _peerScopeImpl, {
  6. List<ResourceScopeImpl>? edges,
})

Implementation

StreamScopeImpl(
  this._rcmgr, // Added rcmgr parameter
  Limit limit,
  String name,
  this.direction,
  this._peerScopeImpl, // PeerScope is fundamental to a stream
  {List<ResourceScopeImpl>? edges} // Initial edges: peer, transient, system
) : super(limit, name, edges: edges);