- From: John Tamplin <jat@google.com>
- Date: Sun, 21 Aug 2011 12:44:29 -0400
On Sun, Aug 21, 2011 at 5:05 AM, Bronislav Klu?ka < Bronislav.Klucka at bauglir.com> wrote: > Hello, > I'm looking at current WebSocket interface specification > http://www.whatwg.org/specs/**web-apps/current-work/** > complete/network.html#the-**websocket-interface<http://www.whatwg.org/specs/web-apps/current-work/complete/network.html#the-websocket-interface> > > 1/ and I'm missing the ability to specify, whether data to be sent are > final or not (whether the frame to be sent should be continuous or not) > I suppose some parameter for specifying final/continuing frame should be > there, or some new methods for framing. I've tried to send 100 MiB text from > Chrome for testing purposes and since there is no way to specify framing it > was send in one piece. There is no way to stream data from client to > server, all data must be kept in memory and sent at once. > The JS API is entirely at the message level -- the fact that it might be fragmented into frames is an implementation detail of the browser and the rest of the network. > 3/ MessageEvent should expose what kind of data was received, textual, blob > or arrayBuffer. This would prevent testing for data type and problems with > testing |binaryType <http://dev.w3.org/html5/**websockets/#dom-websocket-* > *binarytype <http://dev.w3.org/html5/websockets/#dom-websocket-binarytype>> > |property if changed during data receiving. > At the WebSocket protocol level, there is only text data and byte data. There is no notion of it being sent as a blob or array buffer, and any binary data could be received as either, as is convenient to the receiver. -- John A. Tamplin Software Engineer (GWT), Google
Received on Sunday, 21 August 2011 09:44:29 UTC