2018-07-10 17:02:20 +02:00
|
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
|
2018-01-25 15:05:18 +01:00
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
export type JobType =
|
|
|
|
| 'activitypub-http-unicast'
|
|
|
|
| 'activitypub-http-broadcast'
|
|
|
|
| 'activitypub-http-fetcher'
|
|
|
|
| 'activitypub-follow'
|
|
|
|
| 'video-file-import'
|
|
|
|
| 'video-transcoding'
|
|
|
|
| 'email'
|
|
|
|
| 'video-import'
|
|
|
|
| 'videos-views'
|
|
|
|
| 'activitypub-refresher'
|
|
|
|
| 'video-redundancy'
|
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
|
2020-01-31 16:56:52 +01:00
|
|
|
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
|
|
|
}
|