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

com.github.bedrin.jdbc.sniffer.Threads Maven / Gradle / Ivy

package com.github.bedrin.jdbc.sniffer;

/**
 * JDBC Sniffer allows to validate the number of queries generated from different threads
 * You can use Threads enum to select all threads (ANY), current thread (CURRENT) or
 * all threads except current (OTHERS)
 * @see Sniffer
 * @see Spy
 * @since 2.2
 */
public enum Threads {
    ANY,
    CURRENT,
    OTHERS
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy