org.bitbucket.inkytonik.dsprofile

Events

object Events

Source
Events.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Events
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type DimPair = (Dimension, Value)

    Pairs of dimension name and value.

  2. type DimPairs = Seq[(Dimension, Value)]

    Dimension pair sequence.

  3. type Dimension = String

    The type of a dimension name.

  4. type Dimensions = Map[Dimension, Value]

    Type of collection of event dimension names and their values.

    Type of collection of event dimension names and their values. Dimensions are used when producing reports, which can summarise along one or more dimensions.

  5. class Event extends AnyRef

    Base class of profiling events.

  6. sealed abstract class EventKind extends AnyRef

    Event types.

  7. type Value = Any

    The type of a dimension value.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Finish extends EventKind with Product with Serializable

  7. object Start extends EventKind with Product with Serializable

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. val emptyDimensions: Dimensions

    An empty dimensions collection.

  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. val events: ArrayBuffer[Event]

    Event buffer.

  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def finish(i: Long, dimPairs: (Dimension, Value)*): Unit

    Generate a Finish event which matches the start event with the given id, and which has the given dimensions.

    Generate a Finish event which matches the start event with the given id, and which has the given dimensions.

    Annotations
    @inline()
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. var profiling: Boolean

    Flag to control whether profiling data is stored or not.

    Flag to control whether profiling data is stored or not. When this is false (the default) the event generation routines start and finish can be called, but will not store anything. If you want profiling, you need to turn this flag on explicitly, or by calling the Profiler.profiler method which will turn the flag on while a profiled computation is being evaluated.

  23. def reset(): Unit

    Reset the event buffer.

  24. def start(dimPairs: (Dimension, Value)*): Long

    Generate a Start event with the given dimensions.

    Generate a Start event with the given dimensions.

    Annotations
    @inline()
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. def wrap[T](dimPairs: (Dimension, Value)*)(c: ⇒ T): T

    Wrap an execution of c by a Start event defined by the dimension values given by dimPairs and a corresponding Finish event with no extra dimension values.

Inherited from AnyRef

Inherited from Any

Ungrouped