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: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
(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...")
 
(No difference)

Latest revision as of 03:53, 10 June 2013

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