case class TemporaryFileReaperConfiguration(enabled: Boolean = false, olderThan: FiniteDuration = 5.minutes, initialDelay: FiniteDuration = 5.minutes, interval: FiniteDuration = 5.minutes) extends Product with Serializable

Configuration for the TemporaryFileReaper.

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.

Source
Files.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TemporaryFileReaperConfiguration
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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.

Value Members

  1. val enabled: Boolean
  2. val initialDelay: FiniteDuration
  3. val interval: FiniteDuration
  4. val olderThan: FiniteDuration
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product