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