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

SQLite.ProgressHandler Maven / Gradle / Ivy

package SQLite;

/**
 * Callback interface for SQLite's user defined progress handler.
 */

public interface ProgressHandler {

    /**
     * Invoked for N SQLite VM opcodes.
     * The method should return true to continue the
     * current query, or false in order
     * to abandon the action.

*/ public boolean progress(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy