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

com.brightsparklabs.asanti.selector.NonCachableSelector Maven / Gradle / Ivy

/*
 * Maintained by brightSPARK Labs.
 * www.brightsparklabs.com
 *
 * Refer to LICENSE at repository root for license details.
 */

package com.brightsparklabs.asanti.selector;

/**
 * @author brightSPARK Labs
 */
public abstract class NonCachableSelector implements Selector {
    // -------------------------------------------------------------------------
    // IMPLEMENTATION
    // -------------------------------------------------------------------------

    @Override
    public boolean cachable() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy