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

cacheonix.Cacheonix Maven / Gradle / Ivy

There is a newer version: 5.0.0-release
Show newest version
package cacheonix;

import cacheonix.cache.Cache;

public abstract class Cacheonix
{
    public static Cacheonix getInstance()
    {
        return null;
    }

    public static Cacheonix getInstance(String filename)
    {
        return null;
    }

    public void shutdown()
    {
    }

    public abstract boolean cacheExists(String name);
    public abstract Cache createCache(String name);
    public abstract  Cache getCache(String cacheName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy