CodeFlow

@Serializable
data class CodeFlow(val message: Message? = null, val properties: PropertyBag? = null, val threadFlows: List<ThreadFlow>)

A set of threadFlows which together describe a pattern of code execution relevant to detecting a result.

Constructors

Link copied to clipboard
constructor(message: Message? = null, properties: PropertyBag? = null, threadFlows: List<ThreadFlow>)

Properties

Link copied to clipboard
val message: Message? = null

A message relevant to the code flow.

Link copied to clipboard
val properties: PropertyBag? = null

Key/value pairs that provide additional information about the code flow.

Link copied to clipboard

An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution.