net.nemerosa.ontrack.job.NOPJobDecorator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-job Show documentation
Show all versions of ontrack-job Show documentation
Abstract management of identified jobs.
package net.nemerosa.ontrack.job;
public class NOPJobDecorator implements JobDecorator {
public static final JobDecorator INSTANCE = new NOPJobDecorator();
@Override
public Runnable decorate(Job job, Runnable task) {
return task;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy