All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fluxtion.runtime.dataflow.IntFlowFunction Maven / Gradle / Ivy

The newest version!
package com.fluxtion.runtime.dataflow;

import java.util.function.IntSupplier;

/**
 * A primitive int function step applied to a data flow.
 */
public interface IntFlowFunction extends FlowFunction, IntSupplier, IntFlowSupplier {
    default Integer get() {
        return getAsInt();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy