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

io.github.shanqiang.table.SlideTable Maven / Gradle / Ivy

The newest version!
package io.github.shanqiang.table;

import java.util.List;

public interface SlideTable {
    void addRow(Table table, int row);
    int countLessThan(long ts);
    void removeLessThan(long ts);
    void removeFirstRow();
    int size();
    List rows();
    long firstTime();
    long lastTime();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy