Uses of Interface
jakarta.enterprise.concurrent.Trigger
-
Packages that use Trigger Package Description jakarta.enterprise.concurrent Classes and interfaces that make up the Jakarta Concurrency specification. -
-
Uses of Trigger in jakarta.enterprise.concurrent
Subinterfaces of Trigger in jakarta.enterprise.concurrent Modifier and Type Interface Description interface
ZonedTrigger
Triggers allow application developers to plug in rules for when and how often a task should run.Classes in jakarta.enterprise.concurrent that implement Trigger Modifier and Type Class Description class
CronTrigger
Cron-basedTrigger
implementation, which supports 5 or 6 fields delimited by a single space character, plus aZoneId
.Methods in jakarta.enterprise.concurrent with parameters of type Trigger Modifier and Type Method Description java.util.concurrent.ScheduledFuture<?>
ManagedScheduledExecutorService. schedule(java.lang.Runnable command, Trigger trigger)
Creates and executes a task based on a Trigger.<V> java.util.concurrent.ScheduledFuture<V>
ManagedScheduledExecutorService. schedule(java.util.concurrent.Callable<V> callable, Trigger trigger)
Creates and executes a task based on a Trigger.
-