2018-07-10 11:02:20 -04:00
|
|
|
export type JobState = 'active' | 'completed' | 'failed' | 'waiting' | 'delayed'
|
2018-01-25 09:05:18 -05:00
|
|
|
|
2020-01-31 10:56:52 -05: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 04:51:13 -05:00
|
|
|
|
|
|
|
export interface Job {
|
|
|
|
id: number
|
|
|
|
state: JobState
|
2018-01-25 09:05:18 -05:00
|
|
|
type: JobType
|
2020-01-31 10:56:52 -05:00
|
|
|
data: any
|
|
|
|
error: any
|
2019-12-04 08:49:59 -05:00
|
|
|
createdAt: Date | string
|
|
|
|
finishedOn: Date | string
|
|
|
|
processedOn: Date | string
|
2017-11-30 04:51:13 -05:00
|
|
|
}
|