Package com.netflix.recipes.rss.impl

Examples of com.netflix.recipes.rss.impl.InMemoryStoreImpl


    private RSSManager() {
        if (RSSConstants.RSS_STORE_CASSANDRA.equals(
                DynamicPropertyFactory.getInstance().getStringProperty(RSSConstants.RSS_STORE, RSSConstants.RSS_STORE_CASSANDRA).get())) {
            store = new CassandraStoreImpl();
        } else {
            store = new InMemoryStoreImpl();
        }
    }
View Full Code Here

TOP

Related Classes of com.netflix.recipes.rss.impl.InMemoryStoreImpl

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.