Alexander

Results 51 comments of Alexander

@Tieske, I wrote some comments and continue review tomorrow

@Tieske, what do you think about that form: ```lua local topic_matcher = mqtt.topic_matcher { -- without "create_" it looks like a class constructor calling topic = "homes/+/+/#", "homeid", "roomid", }...

> Leading me to: I suggested `rest = "varargs"` because of that possible case: ```lua local topic_matcher = mqtt.topic_matcher { topic = "homes/+/+/#", "homeid", -- "roomid", -- note only one...

I would say, we can't predict which case will be more common. The only thing I'm sure is that the best interface is the one that hard to use in...

I found a workaround (also maybe this will help to solve issue). I edit first line of file ~/.atom/packages/atom-ctags/node_modules/ctags/src/ctags.coffee `{Tags} = require(process.resourcesPath + '/app/node_modules/ctags/build/Release/ctags.node')` to became like this: `{Tags} =...

> (_.pkg._ files will still be kept which are quite big, making clean after only exclude the latest pkg archive would be a nice addition) This is not true, the...

Hi @syyyr, Yes, luamqtt can be used in a dedicated event loop. Please take a look at https://github.com/xHasKx/luamqtt#connectors You have to write a lua module with several functions - to...

Here is a brief workflow that should work. So in your Qt application, you create a Lua state (`lua_newstate`) and a Lua coroutine in it (`lua_newthread`). Then you start that...

@syyyr , > In the end, I decided that it would be easier for me to just use `Qt::Mqtt` Of course, it will be the best solution if you have...

> that send logic is correct. LuaSocket will not guarantee that the whole packet was sent at once. I mean that the code with a `while` loop ensuring the whole...