Ether Framework
Unified API docs for Ether modules
Loading...
Searching...
No Matches
ScheduledTask.java
Go to the documentation of this file.
1
/*-
2
* #%L
3
* ether-cron
4
* %%
5
* Copyright (C) 2026 Raúl Eduardo González Argote
6
* #L%
7
*/
8
9
package
dev.rafex.ether.cron;
10
11
public
interface
ScheduledTask
{
12
13
String
name
();
14
15
boolean
cancel
();
16
17
boolean
cancel
(
boolean
mayInterruptIfRunning);
18
19
boolean
isCancelled
();
20
21
boolean
isDone
();
22
}
dev.rafex.ether.cron.ScheduledTask
Definition
ScheduledTask.java:11
dev.rafex.ether.cron.ScheduledTask.name
String name()
dev.rafex.ether.cron.ScheduledTask.isCancelled
boolean isCancelled()
dev.rafex.ether.cron.ScheduledTask.isDone
boolean isDone()
dev.rafex.ether.cron.ScheduledTask.cancel
boolean cancel(boolean mayInterruptIfRunning)
dev.rafex.ether.cron.ScheduledTask.cancel
boolean cancel()
Generated by
1.16.1