Damiano Tomazzolli

Results 7 comments of Damiano Tomazzolli

Any updates on this issue? I cannot find an handler for connection errors, which is something extremely important in my opinion.

I'm not sure what the state of this issue is, but I tested with `ws v8.6.0` and the reason it's erroring is that there's a [regex test failing](https://github.com/websockets/ws/blob/ba214d96939737304fb76f662700e9df01bb4418/lib/websocket.js#L739). Autobahn passes...

@oberstet I would suggest to also update the README, as it can be misleading for newbies. Initially I thought it supported up to version 2, we can probably get rid...

`allMiniTicker` is also expecting a `payload` parameter which is usually used to determine which symbols to subscribe to, but it's not necessary in this case. You have to pass a...

@chongma Could you please elaborate on this? Did the old connection keep pinging the server even after closing?

@berTrindade I have not found a solution for that, however there's an `onclose` event which is fired when the connection is lost. I've found that to be enough for my...

@berTrindade The `Connection` object has a `onclose` property. ``` this.connection = new autobahn.Connection({ ... }); this.connection.onclose = (reason, details) => { }; ```