com.infomaximum.database.DataIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database;
import com.infomaximum.database.exception.DatabaseException;
import java.util.Iterator;
public interface DataIterator extends AutoCloseable, Iterator {
// void reuseReturningRecord(boolean value);
@Override
boolean hasNext() throws DatabaseException;
@Override
T next() throws DatabaseException;
@Override
void close() throws DatabaseException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy