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

org.yamcs.yarch.Sequence Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.yarch;

/**
 * Sequences generate incrementing numbers and are persisted to the database (i.e. upon restart they continue from where
 * they left)
 * 
 * 
 * @author nm
 *
 */
public interface Sequence {
    long get();
    long next() throws YarchException;
    void reset(long value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy