UpdateResult

sealed class UpdateResult

Represents the result of an update operation on WindowContainer parameters.

This sealed class provides two possible outcomes for update operations:

  1. Success - Indicates the parameter update was successful

  2. Failure - Indicates the parameter update failed with a specific error code and reason

Inheritors

Constructors

Link copied to clipboard
protected constructor()

Types

Link copied to clipboard
class Failure(val code: Int, val reason: String? = null) : WindowContainerParamsUpdater.UpdateResult

Represents a failed parameter update operation.

Link copied to clipboard

Indicates a successful parameter update operation.