-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add isExpired method to Job class
- Loading branch information
1 parent
e5e904e
commit 973d0b8
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Job } from '.'; | ||
|
||
export type IsExpiredMethod = (useRealStatus?: boolean) => boolean; | ||
export const isExpired: IsExpiredMethod = function (this: Job, useRealStatus = false) { | ||
if (useRealStatus) { | ||
this.fetchStatus(); | ||
} | ||
const definition = this.pulse._definitions[this.attrs.name]; | ||
|
||
const lockDeadline = new Date(Date.now() - definition.lockLifetime); | ||
|
||
if (this.attrs.lockedAt && this.attrs.lockedAt < lockDeadline) { | ||
return true; | ||
} | ||
return false; | ||
}; |