Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: possible memleak in CancelToken #70

Closed
wants to merge 2 commits into from
Closed

Conversation

MSOB7YY
Copy link

@MSOB7YY MSOB7YY commented Mar 30, 2025

hey thanks for the awesome package!

i noticed that in CancelToken implementation, we listen to a stream without keeping a reference to the subscription to later cancel

i haven't tested nor verified wether this makes an actual difference or not, but its better to keep things safe ig. i personally close all my subs when not needed

@Tienisto
Copy link
Owner

Sorry, after thinking about this change, the subscription should be automatically closed if the stream is done.
The stream is closed 2 lines above: _refController.close();.

Here is the documentation of StreamController.close:

  /// A stream controller will not complete the returned future until all
  /// listeners present when the done event is sent have stopped listening.
  /// A listener will stop listening if it is cancelled, or if it has handled
  /// the done event.
  /// A paused listener will not process the done even until it is resumed, so
  /// completion of the returned Future will be delayed until all paused
  /// listeners have been resumed or cancelled.

The listener is never paused, so it should close when the stream controller closes.
You are free to reopen this issue if I made a mistake.

@Tienisto Tienisto closed this Mar 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants