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