ContentBundle

@Serializable
data class ContentBundle(val smpHeader: SmpHeader, val content: SmpContent)

Represents a complete content message in the Satellite Message Protocol.

This class bundles together a message header and its content payload, forming a complete message that can be transmitted over the satellite network. The bundle contains all metadata in the header along with the actual content to be delivered.

Constructors

Link copied to clipboard
constructor(smpHeader: SmpHeader, content: SmpContent)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The actual content payload of the message.

Link copied to clipboard

The header containing metadata about the message such as type, version, sequence number, and timestamp.

Functions

Link copied to clipboard