
com.fluxtion.runtime.dataflow.IntFlowSupplier Maven / Gradle / Ivy
package com.fluxtion.runtime.dataflow;
import java.util.function.IntSupplier;
/**
* Makes the output of a {@link IntFlowFunction} available in a user class
*/
public interface IntFlowSupplier extends FlowSupplier, IntSupplier {
default Integer get() {
return getAsInt();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy