Package-level declarations

Types

Link copied to clipboard
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.

Link copied to clipboard
@Serializable
sealed interface Id

Represents the id of a device.

Link copied to clipboard
@Serializable
data class IntId(val value: Int) : Id, Comparable<IntId>

Implementation of Id using an Int as value for the id. This implementation inherits the Comparable interface to allow the comparison between two IntId.