PeerTube/shared/models/server/job.model.ts

25 lines
553 B
TypeScript
Raw Normal View History

2018-07-10 17:02:20 +02: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 16:26:25 +02:00
'video-import' |
'videos-views' |
2020-01-10 10:11:28 +01:00
'activitypub-refresher' |
'video-redundancy'
2017-11-30 10:51:13 +01:00
export interface Job {
id: number
state: JobState
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
}