Instance Property
events
Fresh fan-out AsyncStream of TorEvent values.
var events: AsyncStream<TorEvent> { get }
Discussion
Every access returns a new subscriber stream; swift-tor multiplexes each yielded TorEvent to all live subscribers, so two consumers see identical sequences. Surfaces:
Important
Streams have no replay. Subscribers that start after bootstrap completion will not see prior TorEvent.bootstrap(progress:tag:summary:) values; read state for the initial snapshot when opening the iterator.
Note
The stream completes exactly once, in stop(), when all continuations are finished.