Java org.apache.commons.io.input Tailer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io.input Tailer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io.input Tailer.

The text is from its open source code.

Subclass

org.apache.commons.io.input.Tailer has subclasses.
Click this link to see all its subclasses.

Constructor

Tailer(File file, TailerListener listener, long delay, boolean end)
Creates a Tailer for the given file, with a delay other than the default 1.0s.
Tailer(File file, TailerListener listener)
Creates a Tailer for the given file, starting from the beginning, with the default delay of 1.0s.
Tailer(File file, TailerListener listener, long delay)
Creates a Tailer for the given file, starting from the beginning.

Method

Tailercreate(File file, TailerListener listener, long delay, boolean end)
Creates and starts a Tailer for the given file.
Tailercreate(File file, TailerListener listener, long delay)
Creates and starts a Tailer for the given file, starting at the beginning of the file
Tailercreate(File file, TailerListener listener)
Creates and starts a Tailer for the given file, starting at the beginning of the file with the default delay of 1.0s
voidstop()
Allows the tailer to complete its current loop and return.
StringtoString()
Returns a string representation of the object.