Return-Path: Delivered-To: apmail-incubator-connectors-commits-archive@minotaur.apache.org Received: (qmail 19651 invoked from network); 25 Dec 2010 15:18:48 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Dec 2010 15:18:48 -0000 Received: (qmail 27920 invoked by uid 500); 25 Dec 2010 15:18:48 -0000 Delivered-To: apmail-incubator-connectors-commits-archive@incubator.apache.org Received: (qmail 27866 invoked by uid 500); 25 Dec 2010 15:18:47 -0000 Mailing-List: contact connectors-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: connectors-dev@incubator.apache.org Delivered-To: mailing list connectors-commits@incubator.apache.org Received: (qmail 27854 invoked by uid 99); 25 Dec 2010 15:18:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Dec 2010 15:18:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 Dec 2010 15:18:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CAF832388994; Sat, 25 Dec 2010 15:18:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1052794 - /incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java Date: Sat, 25 Dec 2010 15:18:25 -0000 To: connectors-commits@incubator.apache.org From: kwright@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101225151825.CAF832388994@eris.apache.org> Author: kwright Date: Sat Dec 25 15:18:17 2010 New Revision: 1052794 URL: http://svn.apache.org/viewvc?rev=1052794&view=rev Log: Update the javadoc to be correct. Modified: incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java Modified: incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java URL: http://svn.apache.org/viewvc/incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java?rev=1052794&r1=1052793&r2=1052794&view=diff ============================================================================== --- incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java (original) +++ incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java Sat Dec 25 15:18:17 2010 @@ -23,10 +23,9 @@ import org.apache.manifoldcf.crawler.int import org.apache.manifoldcf.crawler.interfaces.CacheKeyFactory; import java.util.*; -/** This class manages the prerequisite event table. -* An existing row in this table indicates that an event has not yet taken place that *must* take place before certain jobqueue entries -* may be queued. Non-existence of a row conversely indicates that nothing should prevent any dependent jobqueue entries from being -* queued. +/** This class manages the events table. +* A row in this table indicates that a specific event sequence is in progress. For example, a login sequence for a specific web domain +* may be underway. During the time that the event is taking place, no documents that depend on that event will be queued for processing. */ public class EventManager extends org.apache.manifoldcf.core.database.BaseTable {