process method
Processes jobs from the queue.
Implementation
Future<void> process() async {
try {
await _defaultDriver!.process();
} catch (e) {
// Log error but don't rethrow to keep worker running
print('Queue processing error: $e');
}
}