pendingJobsCount property

Future<int> get pendingJobsCount

Get pending job count

Implementation

Future<int> get pendingJobsCount async {
  await _ensureLoaded();
  return _memoryCache.length;
}