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 {
if (before != null) {
await before!(context);
}
try {
await next();
} finally {
if (after != null) {
await after!(context);
}
}
}