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
9package dev.rafex.ether.cron;
10
11import java.util.Objects;
12
13public 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}
record CronTask(String name, EtherJob job)
Definition CronTask.java:13