Ether Framework
Unified API docs for Ether modules
Loading...
Searching...
No Matches
CronTask.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
import
java.util.Objects;
12
13
public
record
CronTask
(String name,
EtherJob
job) {
14
15
public
CronTask
{
16
if
(name ==
null
|| name.isBlank()) {
17
throw
new
IllegalArgumentException(
"Task name must not be blank"
);
18
}
19
Objects.requireNonNull(job,
"job"
);
20
}
21
}
dev.rafex.ether.cron.EtherJob
Definition
EtherJob.java:30
dev.rafex.ether.cron.CronTask
record CronTask(String name, EtherJob job)
Definition
CronTask.java:13
Generated by
1.16.1