yii2-swoole-mqtt icon indicating copy to clipboard operation
yii2-swoole-mqtt copied to clipboard

can sub multiple topic in one request?

Open luxiongwei opened this issue 6 years ago • 1 comments

like this

$topics = [ 'room/sub/100001' => array("qos" => 1, "function" => "procmsg"), 'client/sub/100001' => array("qos" => 1, "function" => "procmsg") ]; $mqtt->subscribe($topics, 1);

luxiongwei avatar Apr 17 '19 12:04 luxiongwei

Not yet supported, I will update to add this feature If you need.. But subscribe not have payload/message field, Just Topic + Request Qos, So the your sample code may not get expect result.

Multi topic subscribe package body:

Field value
Topic Name “a/b”
Requested QoS 0x01
Topic Name “c/d”
Requested QoS 0x02

immusen avatar Apr 19 '19 07:04 immusen