StreamScopeImpl constructor
StreamScopeImpl(
- ResourceManagerImpl _rcmgr,
- Limit limit,
- String name,
- Direction direction,
- PeerScopeImpl _peerScopeImpl, {
- 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);