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
9package dev.rafex.ether.cron;
10
11public 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}
boolean cancel(boolean mayInterruptIfRunning)