final case class GlobalLogBacking(file: File, last: Option[File], newBackingFile: () => File) extends Product with Serializable
Tracks the files that persist the global logging.
file
is the current backing file. last
is the previous backing file, if there is one.
newBackingFile
creates a new temporary location for the next backing file.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- GlobalLogBacking
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val file: File
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val last: Option[File]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val newBackingFile: () => File
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def shift(newFile: File): GlobalLogBacking
Shifts the current backing file to
last
and sets the current backing tonewFile
. - def shiftNew(): GlobalLogBacking
Shifts the current backing file to
last
and sets the current backing to a new temporary file generated bynewBackingFile
. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def unshift: GlobalLogBacking
If there is a previous backing file in
last
, that becomes the current backing file and the previous backing is cleared.If there is a previous backing file in
last
, that becomes the current backing file and the previous backing is cleared. Otherwise, no changes are made. - final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()