Interface ILogFilePoolHandler
- All Known Implementing Classes:
RotatingLogFilePoolHandler
public interface ILogFilePoolHandler
An
ILogFilePoolHandler
is used to manage log data files in Kieker.
After construction, each request of a new file path will return a new file path.
The corresponding constructor must have the following signature:
- Path location
- String file extension prefixed by a dot
- Integer with the max amount of files- Since:
- 1.14
- Author:
- Reiner Jung
-
Method Summary
Modifier and Type Method Description java.nio.file.Path
requestFile()
Create a new path for a log file.
-
Method Details
-
requestFile
java.nio.file.Path requestFile()Create a new path for a log file.- Returns:
- return a proper stream
- Since:
- 1.14
-