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

24 lines
530 B
TypeScript
Raw Normal View History

2018-07-10 10:02:20 -05: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 09:26:25 -05:00
'video-import' |
'videos-views' |
'activitypub-refresher'
2017-11-30 03:51:13 -06:00
export interface Job {
id: number
state: JobState
type: JobType
data: any,
error: any,
2019-12-04 07:49:59 -06:00
createdAt: Date | string
finishedOn: Date | string
processedOn: Date | string
2017-11-30 03:51:13 -06:00
}