org.jobrunr.jobs.details.instructions.PopOperandInstruction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jobrunr Show documentation
Show all versions of jobrunr Show documentation
An easy way to perform background processing on the JVM. Backed by persistent storage. Open and free for commercial use.
package org.jobrunr.jobs.details.instructions;
import org.jobrunr.jobs.details.JobDetailsBuilder;
public class PopOperandInstruction extends ZeroOperandInstruction {
public PopOperandInstruction(JobDetailsBuilder jobDetailsBuilder) {
super(jobDetailsBuilder);
}
@Override
public void load() {
// not needed
}
@Override
public Object invokeInstruction() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy