CodeFlow

open class CodeFlow : PropertyOwner

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

Constructors

Link copied to clipboard
constructor()
No args constructor for use in serialization
constructor(threadFlows: List<ThreadFlow>)

Properties

Link copied to clipboard
@SerializedName(value = "message")
@Expose
open var message: Message
Encapsulates a message intended to be read by the end user.
Link copied to clipboard
@SerializedName(value = "properties")
@Expose
open var properties: PropertyBag
Key/value pairs that provide additional information about the object.
Link copied to clipboard
@SerializedName(value = "threadFlows")
@Expose
open var threadFlows: List<ThreadFlow>
An array of one or more unique threadFlow objects, each of which describes the progress of a program through a thread of execution.

Functions

Link copied to clipboard
open fun equals(other: Any): Boolean
Link copied to clipboard
abstract fun getProperties(): PropertyBag
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
abstract fun setProperties(<set-?>: PropertyBag)
Link copied to clipboard
open fun toString(): String
Link copied to clipboard
open fun updateProperties(mutator: (in PropertyBag) -> Unit)
Link copied to clipboard
open fun withMessage(message: Message): CodeFlow
Link copied to clipboard
open fun withProperties(properties: PropertyBag): CodeFlow
Link copied to clipboard
open fun withThreadFlows(threadFlows: List<ThreadFlow>): CodeFlow