You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the connection.close function was only waiting for synchronous calls …
…to complete, async calls that were waiting (after a synchronous) were still discarded, this has been fixed
basic.get is asynchronous until the entire body has been received, on…
…ly then subsequent messages are sent + first work in progress on implementing smarter buffers
{auto} if connection.close() was called before the connection was set…
… up, the instructions that were called between setting up the connection and the call to close() were lost. This forced users to always use the onConnected() handler to wait for the first instruction to be sent. But this is not according to the library design, so now the instructions that are given before the close() will be executed too;