de.otto.edison.jobs.domain.RunningJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-jobs Show documentation
Show all versions of edison-jobs Show documentation
Jobs library of the edison-microservice project.
package de.otto.edison.jobs.domain;
import java.util.Objects;
/**
* A currently running job.
*
* @since 1.0.0
*/
public record RunningJob(
String jobId,
String jobType
) {}