2018-07-10 10:02:20 -05:00
|
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
|
2018-01-25 08:05:18 -06:00
|
|
|
|
|
|
|
export type JobType = 'activitypub-http-unicast' |
|
|
|
|
'activitypub-http-broadcast' |
|
|
|
|
'activitypub-http-fetcher' |
|
2018-04-18 08:32:40 -05:00
|
|
|
'activitypub-follow' |
|
2018-06-02 14:39:41 -05:00
|
|
|
'video-file-import' |
|
2018-01-30 06:27:07 -06:00
|
|
|
'video-file' |
|
2018-08-02 08:34:09 -05:00
|
|
|
'email' |
|
2018-08-29 09:26:25 -05:00
|
|
|
'video-import' |
|
|
|
|
'videos-views'
|
2017-11-30 03:51:13 -06:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
2018-01-25 08:05:18 -06:00
|
|
|
type: JobType
|
|
|
|
data: any,
|
|
|
|
error: any,
|
2017-11-30 03:51:13 -06:00
|
|
|
createdAt: Date
|
2018-07-10 10:02:20 -05:00
|
|
|
finishedOn: Date
|
|
|
|
processedOn: Date
|
2017-11-30 03:51:13 -06:00
|
|
|
}
|