Skip to content

Commit

Permalink
Chore
Browse files Browse the repository at this point in the history
  • Loading branch information
lamnhan066 committed Jan 22, 2025
1 parent c3cc9ff commit baa692b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/src/isolate_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,13 @@ class IsolateManager<R, P> {
/// To check if the [start] method is completed or not.
bool get isStarted => _startedCompleter.isCompleted;

/// Map<IsolateContactor instance, isBusy>.
/// `Map<IsolateContactor instance, isBusy>`.
final Map<IsolateContactor<R, P>, bool> _isolates =
<IsolateContactor<R, P>, bool>{};

/// Controller for stream.
final StreamController<R> _streamController = StreamController.broadcast();
StreamSubscription<dynamic>? _streamSubscription;
// final List<StreamSubscription<R>> _streamSubscriptions = [];

/// Is the `start` method is starting.
bool _isStarting = false;
Expand Down

1 comment on commit baa692b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

93.72%

Coverage Report for Changed Files
FileStmtsBranchesFuncsLinesUncovered Lines
lib/src
   isolate_manager.dart100%100%100%100%
   isolate_manager.dart100%100%100%100%

Please sign in to comment.