você pode em AfterInsertJob->handle, na execução, criar uma nova fila:
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}
$need_to_work = true;
.....
if( $need_to_work ){
AfterInsertJob::dispatch()->delay(3);
}