process method
Starts processing queued jobs.
This method is typically used in a worker loop.
Example:
await queueDriver.process(); // start the worker
Implementation
@override
Future<void> process() async {
// Nothing to process - jobs are executed immediately on push
}