tracing

object tracing

This object provides internal tooling that enable o1.gui’s Views to record “traces” of ticks and GUI events.

class Object
trait Matchable
class Any
tracing.type

Type members

Classlikes

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

Value parameters:
partialTrace

the trace collected until the view was aborted.

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.

This companion object of the sealed TraceEvent trait provides implementations for the trait. They can be used for tracing different kinds of events.

Companion:
class
sealed trait TraceEvent

Describes a single tick or GUI event recorded while tracing a View. See the TraceEvent companion object for specific subtypes.

Describes a single tick or GUI event recorded while tracing a View. See the TraceEvent companion object for specific subtypes.

Companion:
object