Interface JobQuery

All Superinterfaces:
BaseJobQuery<JobQuery,Job>, org.flowable.common.engine.api.query.Query<JobQuery,Job>

public interface JobQuery extends BaseJobQuery<JobQuery,Job>
Allows programmatic querying of Jobs.
Author:
Joram Barrez, Falko Menge
  • Method Details

    • timers

      JobQuery timers()
      Only select jobs that are timers. Cannot be used together with messages()
    • messages

      JobQuery messages()
      Only select jobs that are messages. Cannot be used together with timers()
    • lockOwner

      JobQuery lockOwner(String lockOwner)
      Only return jobs with the given lock owner.
    • locked

      JobQuery locked()
      Only return jobs that are locked (i.e. they are acquired by an executor).
    • unlocked

      JobQuery unlocked()
      Only return jobs that are not locked.