You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/09/30 03:33:39 UTC

svn commit: r1002921 - /commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java

Author: sebb
Date: Thu Sep 30 01:33:38 2010
New Revision: 1002921

URL: http://svn.apache.org/viewvc?rev=1002921&view=rev
Log:
Javadoc

Modified:
    commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java

Modified: commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java
URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java?rev=1002921&r1=1002920&r2=1002921&view=diff
==============================================================================
--- commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java (original)
+++ commons/proper/io/trunk/src/java/org/apache/commons/io/input/TailerListener.java Thu Sep 30 01:33:38 2010
@@ -33,6 +33,8 @@ public interface TailerListener {
 
     /**
      * This method is called if the tailed file is not found.
+     * <p>
+     * <b>Note:</b> this is called from the tailer thread.
      */
     public void fileNotFound();
 
@@ -41,17 +43,23 @@ public interface TailerListener {
      *
      * This method is called before the file is reopened, and fileNotFound may
      * be called if the new file has not yet been created.
+     * <p>
+     * <b>Note:</b> this is called from the tailer thread.
      */
     public void fileRotated();
 
     /**
      * Handles a line from a Tailer.
+     * <p>
+     * <b>Note:</b> this is called from the tailer thread.
      * @param line the line.
      */
     public void handle(String line);
 
     /**
      * Handles an Exception .
+     * <p>
+     * <b>Note:</b> this is called from the tailer thread.
      * @param ex the exception.
      */
     public void handle(Exception ex);