| Package | Description |
|---|---|
| com.helger.quartz |
The main package of Quartz, containing the client-side interfaces.
|
| com.helger.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
| com.helger.quartz.impl |
Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and
other interfaces required by the org.quartz.core.QuartzScheduler.
|
| com.helger.quartz.impl.matchers | |
| com.helger.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler.
|
| com.helger.quartz.spi |
Contains Service Provider Interfaces that can be implemented by those
wishing to create and use custom versions of Quartz back-end/behind-the-scenes
services.
|
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
IScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Get the keys of all the
in the matching groups. |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
IScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all the
in the given group. |
void |
IScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Pause all of the
in the
matching groups - by pausing all of their Triggers. |
void |
IScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the
in the groups matching. |
void |
IScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the
in matching groups. |
void |
IScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the
in matching
groups. |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
IQuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher) |
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
QuartzScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Get the names of all the
in
the matching groups. |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
IQuartzScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher) |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
QuartzScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all the
in the matching groups. |
void |
IQuartzScheduler.pauseJobs(GroupMatcher<JobKey> matcher) |
void |
QuartzScheduler.pauseJobs(GroupMatcher<JobKey> groupMatcher)
Pause all of the
in the
matching groups - by pausing all of their Triggers. |
void |
IQuartzScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher) |
void |
QuartzScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the
in the matching groups. |
void |
IQuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher) |
void |
QuartzScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the
in the matching groups. |
void |
IQuartzScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher) |
void |
QuartzScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the
in the matching
groups. |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
StdScheduler.getJobKeys(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
StdScheduler.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
void |
StdScheduler.pauseJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
void |
StdScheduler.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
void |
StdScheduler.resumeJobs(GroupMatcher<JobKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
void |
StdScheduler.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Calls the equivalent method on the 'proxied'
QuartzScheduler. |
| Modifier and Type | Method and Description |
|---|---|
static <T extends Key<T>> |
GroupMatcher.anyGroup()
Create a GroupMatcher that matches groups starting with the given string.
|
static GroupMatcher<JobKey> |
GroupMatcher.anyJobGroup()
Create a GroupMatcher that matches job groups starting with the given
string.
|
static GroupMatcher<TriggerKey> |
GroupMatcher.anyTriggerGroup()
Create a GroupMatcher that matches trigger groups starting with the given
string.
|
static <T extends Key<T>> |
GroupMatcher.groupContains(String sCompareTo)
Create a GroupMatcher that matches groups containing the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupEndsWith(String sCompareTo)
Create a GroupMatcher that matches groups ending with the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupEquals(String sCompareTo)
Create a GroupMatcher that matches groups equaling the given string.
|
static <T extends Key<T>> |
GroupMatcher.groupStartsWith(String sCompareTo)
Create a GroupMatcher that matches groups starting with the given string.
|
static GroupMatcher<JobKey> |
GroupMatcher.jobGroupContains(String sCompareTo)
Create a GroupMatcher that matches job groups containing the given string.
|
static GroupMatcher<JobKey> |
GroupMatcher.jobGroupEndsWith(String sCompareTo)
Create a GroupMatcher that matches job groups ending with the given string.
|
static GroupMatcher<JobKey> |
GroupMatcher.jobGroupEquals(String sCompareTo)
Create a GroupMatcher that matches job groups equaling the given string.
|
static GroupMatcher<JobKey> |
GroupMatcher.jobGroupStartsWith(String sCompareTo)
Create a GroupMatcher that matches job groups starting with the given
string.
|
static GroupMatcher<TriggerKey> |
GroupMatcher.triggerGroupContains(String sCompareTo)
Create a GroupMatcher that matches trigger groups containing the given
string.
|
static GroupMatcher<TriggerKey> |
GroupMatcher.triggerGroupEndsWith(String sCompareTo)
Create a GroupMatcher that matches trigger groups ending with the given
string.
|
static GroupMatcher<TriggerKey> |
GroupMatcher.triggerGroupEquals(String sCompareTo)
Create a GroupMatcher that matches trigger groups equaling the given
string.
|
static GroupMatcher<TriggerKey> |
GroupMatcher.triggerGroupStartsWith(String sCompareTo)
Create a GroupMatcher that matches trigger groups starting with the given
string.
|
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
RAMJobStore.getJobKeys(GroupMatcher<JobKey> matcher)
Get the names of all of the
s
that match the given groupMatcher. |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
RAMJobStore.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all of the
s that match the given groupMatcher. |
com.helger.commons.collection.impl.ICommonsList<String> |
RAMJobStore.pauseJobs(GroupMatcher<JobKey> matcher)
Pause all of the
in the
given group - by pausing all of their Triggers. |
com.helger.commons.collection.impl.ICommonsList<String> |
RAMJobStore.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the known
matching. |
com.helger.commons.collection.impl.ICommonsCollection<String> |
RAMJobStore.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the
in the given group. |
com.helger.commons.collection.impl.ICommonsList<String> |
RAMJobStore.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the
in the given
group. |
| Modifier and Type | Method and Description |
|---|---|
com.helger.commons.collection.impl.ICommonsSet<JobKey> |
IJobStore.getJobKeys(GroupMatcher<JobKey> matcher)
Get the keys of all of the
s
that have the given group name. |
com.helger.commons.collection.impl.ICommonsSet<TriggerKey> |
IJobStore.getTriggerKeys(GroupMatcher<TriggerKey> matcher)
Get the names of all of the
s that have the given group name. |
com.helger.commons.collection.impl.ICommonsCollection<String> |
IJobStore.pauseJobs(GroupMatcher<JobKey> groupMatcher)
Pause all of the
in the given
group - by pausing all of their Triggers. |
com.helger.commons.collection.impl.ICommonsCollection<String> |
IJobStore.pauseTriggers(GroupMatcher<TriggerKey> matcher)
Pause all of the
in the
given group. |
com.helger.commons.collection.impl.ICommonsCollection<String> |
IJobStore.resumeJobs(GroupMatcher<JobKey> matcher)
Resume (un-pause) all of the
in the given group. |
com.helger.commons.collection.impl.ICommonsCollection<String> |
IJobStore.resumeTriggers(GroupMatcher<TriggerKey> matcher)
Resume (un-pause) all of the
in the given group. |
Copyright © 2016–2021 Philip Helger. All rights reserved.