fradrive/models/jobs
2019-03-14 20:03:14 +01:00

14 lines
598 B
Plaintext

-- Routine tasks to be executed later
QueuedJob
content Value
creationInstance InstanceId -- multiple uni2work instances access the same database, but each job must be only executed once
creationTime UTCTime
lockInstance InstanceId Maybe -- instance that has started to execute this job
lockTime UTCTime Maybe -- time when execution had begun
deriving Eq Read Show Generic Typeable
CronLastExec
job Value
time UTCTime
instance InstanceId
UniqueCronLastExec job