-
I modified the https://github.com/mcollina/aedes/blob/master/benchmarks/pingpong.js benchmark as follows...
```
client.publish('test', JSON.stringify(process.hrtime()), { qos: 1})
```
...changed to.…
-
MQTT looks not supporting this but can we support a sort of message expiry for qos>0 messages? That means if a client is not connected in time, Mosca will drop it.
P.S. At first glance this looks co…
-
I still seem to be hitting the same scenario where `client._keepaliveTimer === null` at line 19 in index.js
```
client._keepaliveTimer.reschedule(client._keepaliveInterval)
```
It's hard to recreate…
-
With the following code I have found a bug I donot understand:
```
Error:undefined:\AC@acl The token T_CS[\AC@acl] is not defined.
at F:/EigeneDateien/BuchprojektSpringer/XMLtestordner/test1…
-
# mqtt version 1.7.3
### mqtt.Client#subscribe(topic/topic array/topic object, [options], [callback])
Subscribe to a topic or topics
- `topic` is a `String` topic to subscribe to or an `Array` of
…
perzy updated
8 years ago
-
Clients keeps throwing error. Do you know what it means?
Also sometimes I get 10s/100s of subscription logs for same client and topic whereas frontend only tried once as below:
2016-01-10T19:58:28.22…
-
How can I use PFX option as in regular NodeJS TLS
Like the following.
var options = {
pfx: fs.readFileSync('client.pfx')
};
Besides pfx/pkcs, the following parameters are necessary to have at the …
-
Adicionar alguma forma de persistir (cookie) que o usuário já viu a animação do mosquito.
Em blogs quando o usuário muda navega nos links normalmente a pagina é recarregada e seria muito chato ter o m…
-
Can we get something like attachHttp available in Mosca? WebSocekt should have all the regular options available like full security options - tls cert, client cert etc.
-
To attach logic into message publishes on different topics, we have three options:
1) `server.on( 'published', ...)`: This way your handlers should pattern match all input messages, not seem good in …