Jobs
perspective-jobs shows every Quartz job registered in the running system. Read-only schedule control: jobs are defined via source artefacts and operated here.
Layout
A table of every job with:
- Name and group.
- Cron expression.
- Next fire time.
- Owner (the user / tenant that registered it).
- State (enabled / disabled / paused).
Actions
- Trigger now - fires the job out-of-band; the next scheduled fire time is unaffected.
- Enable / Disable - pauses or resumes the Quartz trigger without removing it.
- View parameters - inspect static parameters bound to the job.
To create or delete a job, edit its source:
- Declare a
.jobartefact and publish it. See.jobartefacts. - Or annotate a Java class with
@Scheduled- the synchronizer picks it up and registers it. See Scheduled jobs in Java.