demo文件里那个是订阅主题,哪个是发布主题,
这一句是是什么意思,订阅主题的话是哪一个,event0还是,event1,我想把订阅主题改为 iotserver,怎么改,
发布主题是哪个?
local function pubQos0TestCb(result)
log.info("mqttOutMsg.pubQos0TestCb",result)
if result then sys.timerStart(pubQos0Test,10000) end
end
function pubQos0Test()
insertMsg("/qos0topic","qos0data",0,{cb=pubQos0TestCb})
end
local function pubQos1TestCb(result)
log.info("mqttOutMsg.pubQos1TestCb",result)
if result then sys.timerStart(pubQos1Test,20000) end
end
function pubQos1Test()
insertMsg("/中文qos1topic","中文qos1data",1,{cb=pubQos1TestCb})
end
哪个是发布主题,如何更改,如果我想把,发布主题改为iotsend,要如何更改