getQueueStatus method
Get details about the current queue status
Implementation
@override
Future<Map<String, dynamic>> getQueueStatus() async {
return {
'isEnabled': _isQueueEnabled,
'maxConcurrent': _maxConcurrent,
'activeCount': _activeOperations,
'queuedCount': _queuedOperations.length,
};
}