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

io.engineblock.activityapi.longIntervalSupplier Maven / Gradle / Ivy

Go to download

The driver API for engineblock; Provides the interfaces needed to build drivers that can be loaded by engineblock core

There is a newer version: 2.12.65
Show newest version
package io.engineblock.activityapi;

import java.util.function.LongSupplier;

public interface longIntervalSupplier extends LongSupplier {
    /**
     * Get the next interval to be consumed by the caller, where the
     * first value is the returned value, and the last value is
     * one less than the first value plus the stride.
     * @param stride How many values to request
     * @return the base value of the interval to consume
     */
    long getInterval(long stride);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy