You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2010/12/25 16:18:25 UTC

svn commit: r1052794 - /incubator/lcf/trunk/framework/pull-agent/src/main/java/org/apache/manifoldcf/crawler/jobs/EventManager.java

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
 {