Examples of PingQueueEntry


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

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

            // 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
Copyright © 2018 www.massapi.com. 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.