xtdb.ICursor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtdb-core Show documentation
Show all versions of xtdb-core Show documentation
An open source document database with bitemporal graph queries
package xtdb;
import java.util.Spliterator;
public interface ICursor extends Spliterator, AutoCloseable {
@Override
default Spliterator trySplit() {
return null;
}
@Override
default int characteristics() {
return IMMUTABLE;
}
@Override
default long estimateSize() {
return Long.MAX_VALUE;
}
@Override
default void close() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy