Publishes message to all current subscribers of topic.
The topic to publish on.
The payload to deliver to subscribers.
Subscribes handler to topic.
The topic to subscribe to.
Callback invoked with each message published to the topic.
An Unsubscribe function that removes this subscription when called.
Publish/subscribe message bus keyed by topic.
Remarks
This is the seam RTCForge uses to fan out messages (for example, broadcasting across nodes). The default in-process implementation is LocalMessageBus; production deployments can supply an adapter backed by Redis Pub/Sub, NATS, or similar. Messages are untyped (
unknown) and it is the caller's responsibility to serialize and validate payloads.