tracing
o1.gui.viewimpl.tracing
object tracing
This object provides internal tooling that enable o1.gui’s View
s to record “traces” of ticks and GUI events.
Attributes
- Graph
-
- Supertypes
- Self type
-
tracing.type
Members list
Type members
Classlikes
Attributes
case class TraceAborted[TraceData](message: String, partialTrace: Seq[(TraceData, TraceEvent)]) extends RuntimeException
Represents situations where a View
hasn’t reached its done state in the allotted number of ticks.
Represents situations where a View
hasn’t reached its done state in the allotted number of ticks.
Type parameters
- TraceData
-
the type of the model-state descriptions in the trace
Parameters
- partialTrace
-
the trace collected until the view was aborted.
Attributes
- Supertypes
-
trait Producttrait Equalsclass RuntimeExceptionclass Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass AnyShow all
object TraceEvent
This companion object of the sealed TraceEvent
trait provides implementations for the trait. They can be used for tracing different kinds of events.
Describes a single tick or GUI event recorded while tracing a View
. See the TraceEvent
companion object for specific subtypes.
In this article