Context
interface Context
Models the execution context on which a component is running. Contains the information about the device id belonging to the component and the host where the system is running. Metadata can be added and queried to the context to provide additional application-specific information.
val context: Context = Context(1.toId(), host)
val value: Int? = context["key"] // returns null
context["key"] = 1
val value: Int? = context["key"] // returns 1
val invalid: Double? = context["key"] // returns null
Content copied to clipboard