> For the complete documentation index, see [llms.txt](https://docs.arcology.network/streamer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arcology.network/streamer/event-actor/message-wrapper.md).

# Message Wrapper

The wrapper packs up the output from the worker thread and convert it into a format ready for the event broker to publish under the corresponding topic.

```go
type MessageWrapper struct {
	MsgBroker      *streamer.StatefulBroker
	LatestMessage  *Message
	WorkThreadName string
}
```
