SandboxMessage
This class represents a message within a sandbox environment, encapsulating the message content, its raw byte representation, and the topic it belongs to. It is designed to hold protocol buffer messages along with their serialized form and routing information.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Msg | proto.Message | Stores a protocol buffer message, which is used to encapsulate structured data for serialization and deserialization. |
| Raw | []byte | Stores the raw byte representation of the message, which is used for direct byte-level manipulation or transmission. |
| Topic | string | Stores a string identifier for the message's topic, which is used to categorize or route messages within a messaging system. |