SuspendableSetter

interface SuspendableSetter<T> : Postable<T>

Deprecated

This feature has been deprecated. It is recommended to use Compose Multiplatform instead.

A Postable that can be set in a suspended manner.

Type Parameters

T

the type of value that can be posted.

Inheritors

Functions

Link copied to clipboard
abstract fun post(newValue: T)

Updates the value of this Postable

Link copied to clipboard
abstract suspend fun set(newValue: T)

Updates the value of this Postable in a suspended manner.