handle method
Handle the job context Call next() to continue to the next middleware or job execution
Implementation
@override
Future<void> handle(QueueJobContext context, Next next) async {
await next().timeout(
timeout,
onTimeout: () {
throw TimeoutException('Job execution exceeded timeout of $timeout');
},
);
}