MQTTResponse
faststream.mqtt.response.MQTTResponse #
MQTTResponse(
body: SendableMessage,
*,
headers: dict[str, str] | None = None,
correlation_id: str | None = None,
qos: QoS = AT_MOST_ONCE,
retain: bool = False,
)
Bases: Response
Source code in faststream/mqtt/response.py
as_publish_command #
as_publish_command() -> MQTTPublishCommand
Source code in faststream/mqtt/response.py
get_publish_key #
Get the key for publishing this message.
Override this method in subclasses to provide broker-specific keys. Default implementation returns None (no key).
| RETURNS | DESCRIPTION |
|---|---|
Any | None | The key for publishing, or None if this Response type doesn't use keys. |