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

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

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

import java.util.function.LongSupplier;

/**
 * Makes the output of a {@link LongFlowFunction} available in a user class
 */
public interface LongFlowSupplier extends FlowSupplier, LongSupplier {
    default Long get() {
        return getAsLong();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy