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

io.questdb.griffin.SqlExecutionInterruptor Maven / Gradle / Ivy

The newest version!
package io.questdb.griffin;

public interface SqlExecutionInterruptor {
    public static final SqlExecutionInterruptor NOP_INTERRUPTOR = new SqlExecutionInterruptor() {
        @Override
        public void checkInterrupted() {
        }
    };

    void checkInterrupted();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy