Lines Matching refs:dataEnd
813 ### on('dataEnd')<sup>11+</sup>
815 on(type: 'dataEnd', callback: Callback\<void\>): void
817 Enables listening for the **dataEnd** events of a WebSocket connection. This API uses an asynchrono…
825 | type | string | Yes | Event type.<br />**dataEnd**: event indicating the data rece…
834 ws.on('dataEnd', () => {
835 console.log("on dataEnd")
839 ### off('dataEnd')<sup>11+</sup>
841 off(type: 'dataEnd', callback?: Callback\<void\>): void
843 Disables listening for the **dataEnd** events of a WebSocket connection. This API uses an asynchron…
854 | type | string | Yes | Event type.<br />**dataEnd**: event indicating the data rece…
863 ws.off('dataEnd');