Package org.lilyproject.repository.api

Examples of org.lilyproject.repository.api.RepositoryUnavailableException


    }

    public Repository getRepository(String repositoryName, String tableName)
            throws InterruptedException, RepositoryException {
        if (!repositoryModel.repositoryExistsAndActive(repositoryName)) {
            throw new RepositoryUnavailableException("Repository does not exist or is not active: " + repositoryName);
        }
        RepoTableKey key = new RepoTableKey(repositoryName, tableName);
        if (!repositoryCache.containsKey(key)) {
            synchronized (repositoryCache) {
                if (!repositoryCache.containsKey(key)) {
View Full Code Here

TOP

Related Classes of org.lilyproject.repository.api.RepositoryUnavailableException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.