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);