1
0
Fork 0
peertube/shared/models/server/job.model.ts

25 lines
553 B
TypeScript
Raw Normal View History

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