io.questdb.griffin.SqlExecutionInterruptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
QuestDB is High Performance Time Series Database
package io.questdb.griffin;
public interface SqlExecutionInterruptor {
public static final SqlExecutionInterruptor NOP_INTERRUPTOR = new SqlExecutionInterruptor() {
@Override
public void checkInterrupted() {
}
};
void checkInterrupted();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy