LCOV - code coverage report

Current view
top level - src - worker_service.dart
Test
lcov.info
Date
2025-07-05
Legend
Lines
hit
not hit
Branches
taken
not taken
# not executed
HitTotalCoverage
Lines11100.0%
Functions00-
Branches00-
Each row represents a line of source code
LineBranchHitsSource code
1import 'typedefs.dart';
2import 'worker/worker_request.dart';
3
4/// Base class for a worker service.
5abstract interface class WorkerService {
6 /// Map of command handlers. Upon reception of a [WorkerRequest], the platform
7 /// worker will dispatch the request to the [CommandHandler] matching the value
8 /// of [WorkerRequest.command].
9 OperationsMap get operations;
10
11 /// Empty command handlers map.
124 static final OperationsMap noOperations = OperationsMap({});
13}
Choose Features