Nessuna descrizione

Ivan Asmer f3c61f016f MD 6 anni fa
public f3c61f016f MD 6 anni fa
README.md f3c61f016f MD 6 anni fa
index.js 69f661fdf1 comments and updates 6 anni fa
package-lock.json 78f4e942f8 basic back 6 anni fa
package.json 78f4e942f8 basic back 6 anni fa

README.md

Async WS:

Almost mirror sample of:

Catching data from Stream or WebSocket and pass it as generated sequence of Promises, which can be handled by pseudo synchronous for ... of or for await ... of

For solve this Promise with outside control used. It needed because data passed many times to stream ondata/onmessage/onchunk/onfuckingsomethingelse, not only once as in Promise callback.

So, promises should be resolved from chunk event outside of closure, where resolve and reject accessible.

When chunk becomes, it saved into chunks queue, and if promise for that chunk are already yielded, it resolves

When promise yielding outside of generator, if chunk for this promise already saved in queue, promise resolves with data of that chunk

So, generated promises gives ability to handle stream in imperative manner if for of loop with await.

Than, recieved messages passed as JSON with some RPC function call with params