DecodedObservation

sealed interface DecodedObservation<out T>

Typed equivalent of com.atruedev.kmpble.gatt.Observation.

Inheritors

Types

Link copied to clipboard
Link copied to clipboard
data class Value<T>(val value: T) : DecodedObservation<T>

Functions

Link copied to clipboard
inline fun <T, R> DecodedObservation<T>.fold(onValue: (T) -> R, onDisconnected: () -> R): R

Eliminate a DecodedObservation by applying the matching function.