Package com.netflix.recipes.rss

Examples of com.netflix.recipes.rss.Subscriptions


        Stopwatch stopwatch = getRSSStatsTimer.start();

        try {
            getRSSRequestCounter.increment();

            Subscriptions subscriptions = RSSManager.getInstance().getSubscriptions(user);
            return Response.ok(subscriptions).build();
        } catch (Exception e) {
            logger.error("Exception occurred when fetching subscriptions", e);
            getRSSErrorCounter.increment();
            return Response.serverError().build();
View Full Code Here

TOP

Related Classes of com.netflix.recipes.rss.Subscriptions

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.