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

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

package com.fluxtion.runtime.dataflow;

import java.util.function.LongSupplier;

/**
 * A primitive double function step applied to a data flow.
 */
public interface LongFlowFunction extends FlowFunction, LongSupplier, LongFlowSupplier {
    default Long get() {
        return getAsLong();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy