Package | Description |
---|---|
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
org.quartz.core |
Contains the core classes and interfaces for the Quartz job scheduler.
|
org.quartz.impl.matchers |
Modifier and Type | Method and Description |
---|---|
List<Matcher<JobKey>> |
ListenerManager.getJobListenerMatchers(String listenerName)
Get the set of Matchers for which the listener
will receive events if ANY of the matchers match.
|
List<Matcher<TriggerKey>> |
ListenerManager.getTriggerListenerMatchers(String listenerName)
Get the set of Matchers for which the listener
will receive events if ANY of the matchers match.
|
Modifier and Type | Method and Description |
---|---|
void |
ListenerManager.addJobListener(JobListener jobListener,
Matcher<JobKey>... matchers)
Add the given
to the Scheduler ,
and register it to receive events for Jobs that are matched by ANY of the
given Matchers. |
void |
ListenerManager.addJobListener(JobListener jobListener,
Matcher<JobKey> matcher)
Add the given
to the Scheduler ,
and register it to receive events for Jobs that are matched by the
given Matcher. |
boolean |
ListenerManager.addJobListenerMatcher(String listenerName,
Matcher<JobKey> matcher)
Add the given Matcher to the set of matchers for which the listener
will receive events if ANY of the matchers match.
|
void |
ListenerManager.addTriggerListener(TriggerListener triggerListener,
Matcher<TriggerKey>... matchers)
Add the given
to the Scheduler ,
and register it to receive events for Triggers that are matched by ANY of the
given Matchers. |
void |
ListenerManager.addTriggerListener(TriggerListener triggerListener,
Matcher<TriggerKey> matcher)
Add the given
to the Scheduler ,
and register it to receive events for Triggers that are matched by the
given Matcher. |
boolean |
ListenerManager.addTriggerListenerMatcher(String listenerName,
Matcher<TriggerKey> matcher)
Add the given Matcher to the set of matchers for which the listener
will receive events if ANY of the matchers match.
|
boolean |
ListenerManager.removeJobListenerMatcher(String listenerName,
Matcher<JobKey> matcher)
Remove the given Matcher to the set of matchers for which the listener
will receive events if ANY of the matchers match.
|
boolean |
ListenerManager.removeTriggerListenerMatcher(String listenerName,
Matcher<TriggerKey> matcher)
Remove the given Matcher to the set of matchers for which the listener
will receive events if ANY of the matchers match.
|
Modifier and Type | Method and Description |
---|---|
void |
ListenerManager.addJobListener(JobListener jobListener,
List<Matcher<JobKey>> matchers)
Add the given
to the Scheduler ,
and register it to receive events for Jobs that are matched by ANY of the
given Matchers. |
void |
ListenerManager.addTriggerListener(TriggerListener triggerListener,
List<Matcher<TriggerKey>> matchers)
Add the given
to the Scheduler ,
and register it to receive events for Triggers that are matched by ANY of the
given Matchers. |
boolean |
ListenerManager.setJobListenerMatchers(String listenerName,
List<Matcher<JobKey>> matchers)
Set the set of Matchers for which the listener
will receive events if ANY of the matchers match.
|
boolean |
ListenerManager.setTriggerListenerMatchers(String listenerName,
List<Matcher<TriggerKey>> matchers)
Set the set of Matchers for which the listener
will receive events if ANY of the matchers match.
|
Modifier and Type | Method and Description |
---|---|
List<Matcher<JobKey>> |
ListenerManagerImpl.getJobListenerMatchers(String listenerName) |
List<Matcher<TriggerKey>> |
ListenerManagerImpl.getTriggerListenerMatchers(String listenerName) |
Modifier and Type | Method and Description |
---|---|
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
Matcher<JobKey>... matchers) |
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
Matcher<JobKey> matcher) |
boolean |
ListenerManagerImpl.addJobListenerMatcher(String listenerName,
Matcher<JobKey> matcher) |
void |
ListenerManagerImpl.addTriggerListener(TriggerListener triggerListener,
Matcher<TriggerKey>... matchers) |
void |
ListenerManagerImpl.addTriggerListener(TriggerListener triggerListener,
Matcher<TriggerKey> matcher) |
boolean |
ListenerManagerImpl.addTriggerListenerMatcher(String listenerName,
Matcher<TriggerKey> matcher) |
boolean |
ListenerManagerImpl.removeJobListenerMatcher(String listenerName,
Matcher<JobKey> matcher) |
boolean |
ListenerManagerImpl.removeTriggerListenerMatcher(String listenerName,
Matcher<TriggerKey> matcher) |
Modifier and Type | Method and Description |
---|---|
void |
ListenerManagerImpl.addJobListener(JobListener jobListener,
List<Matcher<JobKey>> matchers) |
void |
ListenerManagerImpl.addTriggerListener(TriggerListener triggerListener,
List<Matcher<TriggerKey>> matchers) |
boolean |
ListenerManagerImpl.setJobListenerMatchers(String listenerName,
List<Matcher<JobKey>> matchers) |
boolean |
ListenerManagerImpl.setTriggerListenerMatchers(String listenerName,
List<Matcher<TriggerKey>> matchers) |
Modifier and Type | Class and Description |
---|---|
class |
AndMatcher<T extends Key<?>>
Matches using an AND operator on two Matcher operands.
|
class |
EverythingMatcher<T extends Key<?>>
Matches on the complete key being equal (both name and group).
|
class |
GroupMatcher<T extends Key<?>>
Matches on group (ignores name) property of Keys.
|
class |
KeyMatcher<T extends Key<?>>
Matches on the complete key being equal (both name and group).
|
class |
NameMatcher<T extends Key<?>>
Matches on name (ignores group) property of Keys.
|
class |
NotMatcher<T extends Key<?>>
Matches using an NOT operator on another Matcher.
|
class |
OrMatcher<T extends Key<?>>
Matches using an OR operator on two Matcher operands.
|
class |
StringMatcher<T extends Key<?>>
An abstract base class for some types of matchers.
|
Modifier and Type | Field and Description |
---|---|
protected Matcher<T> |
OrMatcher.leftOperand |
protected Matcher<T> |
AndMatcher.leftOperand |
protected Matcher<T> |
NotMatcher.operand |
protected Matcher<T> |
OrMatcher.rightOperand |
protected Matcher<T> |
AndMatcher.rightOperand |
Modifier and Type | Method and Description |
---|---|
Matcher<T> |
OrMatcher.getLeftOperand() |
Matcher<T> |
AndMatcher.getLeftOperand() |
Matcher<T> |
NotMatcher.getOperand() |
Matcher<T> |
OrMatcher.getRightOperand() |
Matcher<T> |
AndMatcher.getRightOperand() |
Modifier and Type | Method and Description |
---|---|
static <U extends Key<?>> |
AndMatcher.and(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an AndMatcher that depends upon the result of both of the given matchers.
|
static <U extends Key<?>> |
AndMatcher.and(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an AndMatcher that depends upon the result of both of the given matchers.
|
static <U extends Key<?>> |
NotMatcher.not(Matcher<U> operand)
Create a NotMatcher that reverses the result of the given matcher.
|
static <U extends Key<?>> |
OrMatcher.or(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an OrMatcher that depends upon the result of at least one of the given matchers.
|
static <U extends Key<?>> |
OrMatcher.or(Matcher<U> leftOperand,
Matcher<U> rightOperand)
Create an OrMatcher that depends upon the result of at least one of the given matchers.
|
Constructor and Description |
---|
AndMatcher(Matcher<T> leftOperand,
Matcher<T> rightOperand) |
AndMatcher(Matcher<T> leftOperand,
Matcher<T> rightOperand) |
NotMatcher(Matcher<T> operand) |
OrMatcher(Matcher<T> leftOperand,
Matcher<T> rightOperand) |
OrMatcher(Matcher<T> leftOperand,
Matcher<T> rightOperand) |
Copyright 2001-2019, Terracotta, Inc.