Package org.apache.roller.weblogger.pojos

Examples of org.apache.roller.weblogger.pojos.PingQueueEntry


                " for this ping target and website: " + autoPing);
            return;
        }

        Timestamp now = new Timestamp(System.currentTimeMillis());
        PingQueueEntry pingQueueEntry =
                new PingQueueEntry(
                    null, now, autoPing.getPingTarget(),
                    autoPing.getWebsite(), 0);
        this.saveQueueEntry(pingQueueEntry);
    }
View Full Code Here


            // Get all of the entries
            List entries = pingQueueMgr.getAllQueueEntries();
           
            // Process each entry
            for (Iterator i = entries.iterator(); i.hasNext();) {
                PingQueueEntry pingQueueEntry = (PingQueueEntry) i.next();
                processQueueEntry(pingQueueEntry);
            }
            if (logger.isDebugEnabled()) logger.debug("Finished processing ping queue.");
        } catch (Exception ex) {
            logger.error("Unexpected exception processing ping queue!  Aborting this pass of ping queue processing.", ex);
View Full Code Here

TOP

Related Classes of org.apache.roller.weblogger.pojos.PingQueueEntry

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.