Package com.socialnetworkshirts.twittershirts.dataaccess.twitter.importer

Examples of com.socialnetworkshirts.twittershirts.dataaccess.twitter.importer.TwitterLiveDataImporter


        return instance;
    }

    private TwitterDataService() {
        log.info("Initializing TwitterLiveDataImporter ...");
        importer = new TwitterLiveDataImporter();
        //importer = new TwitterLiveDataImporter();
        log.info("Initializing CacheManager with data from ehcache.xml ...");
        cacheManager = new CacheManager(this.getClass().getClassLoader().getResourceAsStream("/ehcache.xml"));
        followersCache = cacheManager.getCache(CACHE_FOLLOWERS);
        usersCache = cacheManager.getCache(CACHE_USERS);
View Full Code Here

TOP

Related Classes of com.socialnetworkshirts.twittershirts.dataaccess.twitter.importer.TwitterLiveDataImporter

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.