Packages

object Timing extends Loggable

Linear Supertypes
Loggable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Timing
  2. Loggable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Accumulator extends AnyRef

    Mix this trait into any class to add the accumTiming, clearTimings, and printTimings variety methods to that class.

    Mix this trait into any class to add the accumTiming, clearTimings, and printTimings variety methods to that class. The target class must provide a timingLabel, which will be prepended to timing messages generated for printing.

  2. trait TimeProvider[T, D] extends AnyRef

    Abstracts the concept of time and duration to type parameters T and D respectively.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def calcNanoTime[T](task: => T): (Long, T)
  6. def calcTime[T](task: => T): (Long, T)
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. def debugMonixTime[T](label: String)(task: => Task[T]): Task[T]
  9. def debugNanoTime(label: String, time: Long): Unit
  10. def debugNanoTime[T](label: String)(task: => T): T
  11. def debugTime(label: String, time: Long): Unit
  12. def debugTime[T](label: String)(task: => T): T
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def logMonixTime[T](label: String)(task: => Task[T]): Task[T]
  19. def logNanoTime(label: String, time: Long): Unit
  20. def logNanoTime[T](label: String)(task: => T): T
  21. def logTime(label: String, time: Long): Unit
  22. def logTime[T](label: String)(task: => T): T
  23. implicit val logger: Logger
    Attributes
    protected
    Definition Classes
    Loggable
    Annotations
    @transient()
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. def withTimeAccumulator[T](prefix: String)(body: (Accumulator) => T): T

    Run the given body of code, passing in a temporary Accumulator instance that uses the given prefix as its timingLabel.

  33. object SystemNanoTime extends TimeProvider[Long, Long]

    A time provider that gets the system's "nano" time as nanoseconds

  34. object SystemTime extends TimeProvider[Long, Long]

    A time provider that gets the system time as milliseconds

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Loggable

Inherited from AnyRef

Inherited from Any

Ungrouped