MessageEvent

data class MessageEvent(val nt: Long = System.nanoTime(), val ts: Long = System.currentTimeMillis(), val unit: String, val message: String? = null) : SessionEvent

Represents a message event originating from a SUT.

Constructors

Link copied to clipboard
constructor(nt: Long = System.nanoTime(), ts: Long = System.currentTimeMillis(), unit: String, message: String? = null)

Properties

Link copied to clipboard
val message: String? = null

Message content.

Link copied to clipboard
open override val nt: Long

Event timestamp in nanoseconds (more precise, but overflows).

Link copied to clipboard
open override val ts: Long

Event timestamp in milliseconds.

Link copied to clipboard

The source entity of the message.

Functions

Link copied to clipboard
open override fun toString(): String