Package com.music.model.persistent

Examples of com.music.model.persistent.FeedEntry


        Collections.shuffle(pieces);
        logger.info("Found " + pieces.size() + " eligible pieces");
        int persisted = 0;
        for (Piece piece : pieces) {
            if (piece.getLikes() < 3 && piece.getLikes() > -3) {
                FeedEntry entry = new FeedEntry();
                entry.setInclusionTime(now);
                entry.setPiece(piece);
                dao.persist(entry);
                persisted++;
            }
            if (persisted == 2) {
                break;
View Full Code Here

TOP

Related Classes of com.music.model.persistent.FeedEntry

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.