case class TemporaryFileReaperConfiguration(enabled: Boolean = false, olderThan: FiniteDuration = 5.minutes, initialDelay: FiniteDuration = 5.minutes, interval: FiniteDuration = 5.minutes) extends Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- TemporaryFileReaperConfiguration
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new TemporaryFileReaperConfiguration(enabled: Boolean = false, olderThan: FiniteDuration = 5.minutes, initialDelay: FiniteDuration = 5.minutes, interval: FiniteDuration = 5.minutes)
- enabled
true if the reaper is enabled, false otherwise. Default is false.
- olderThan
the period after which the file is considered old. Default 5 minutes.
- initialDelay
the initial delay after application start when the reaper first run. Default 5 minutes.
- interval
the duration after the initial run during which the reaper will scan for files it can remove. Default 5 minutes.
Configuration for the TemporaryFileReaper.
true if the reaper is enabled, false otherwise. Default is false.
the period after which the file is considered old. Default 5 minutes.
the initial delay after application start when the reaper first run. Default 5 minutes.
the duration after the initial run during which the reaper will scan for files it can remove. Default 5 minutes.