A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Streams

From WHATWG Wiki
Revision as of 03:53, 10 June 2013 by Annevk (talk | contribs) (Created page with "Documenting what we have today for now with regards to IO streams. == WebSocket == Outgoing: * send(String/Blob/ArrayBuffer) * bufferedAmount (bytes not yet transmitted ov...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documenting what we have today for now with regards to IO streams.

WebSocket

Outgoing:

  • send(String/Blob/ArrayBuffer)
  • bufferedAmount (bytes not yet transmitted over the network)

Incoming:

  • omessage (e.data)
  • binaryType

EventSource

Incoming

  • onmessage (e.data)

More