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

24 lines
503 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' |
'activitypub-refresher'
2017-11-30 09:51:13 +00:00
export interface Job {
id: number
state: JobState
type: JobType
data: any,
error: any,
2017-11-30 09:51:13 +00:00
createdAt: Date
2018-07-10 15:02:20 +00:00
finishedOn: Date
processedOn: Date
2017-11-30 09:51:13 +00:00
}