JoergBudi commented on code in PR #757:
URL: https://github.com/apache/commons-io/pull/757#discussion_r2187452811
##########
src/main/java/org/apache/commons/io/input/Tailer.java:
##########
@@ -310,6 +312,23 @@ public Builder setTailFromEnd(final boolean end) {
this.tailFromEnd = end;
return this;
}
+
+ /**
+ * Sets ignoreTouch behaviour
+ *
+ * @param ignoreTouch This can be useful when your watched file gets
touched (meaning it gets more recent timestamps
+ * without changing the file) for some reason or when you are
working on file systems where timestamp
+ * is updated before content.
+ * The default behaviour (ignoreTouch=false) would then reissue
the whole current file, while
+ * ignoreTouch=true does nothing in that case.
+ *
+ * @return {@code this} instance.
+ * @since 2.20.0
Review Comment:
thx, will remember that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]