OffloadingServiceUiState

data class OffloadingServiceUiState(val id: Int = 0, val pipelineState: Pipeline.State = Pipeline.State.NULL, val port: Int = 0)

The data class representing the UI state of an offloading service.

Constructors

Link copied to clipboard
constructor(id: Int = 0, pipelineState: Pipeline.State = Pipeline.State.NULL, port: Int = 0)

Properties

Link copied to clipboard
val id: Int = 0

The unique identifier of the offloading service.

Link copied to clipboard
val pipelineState: Pipeline.State

The current state of the pipeline associated with the offloading service.

Link copied to clipboard
val port: Int = 0

The port number assigned to the offloading service.

Functions

Link copied to clipboard
operator fun component1(): Int
Link copied to clipboard
operator fun component2(): Pipeline.State
Link copied to clipboard
operator fun component3(): Int
Link copied to clipboard
fun copy(id: Int = 0, pipelineState: Pipeline.State = Pipeline.State.NULL, port: Int = 0): OffloadingServiceUiState