As I understand ArrayBuffer length is set only by constructor and cannot be changed dynamically. So I am curious, is it possible using websockets binary data messages send arraybuffer certain part, not whole buffer?

link|improve this question

see also DataView() – quarry Apr 10 at 22:14
feedback

1 Answer

up vote 2 down vote accepted

You can use .subarray to slice a buffer view. Then you can fetch the buffer like this, where origBuffer is the original ArrayBuffer: http://jsfiddle.net/rtaB4/.

var arr = new Uint8Array(origBuffer),
    part = arr.subarray(2, 4), // slice bytes from index 2 to 4
    buffer = new Uint8Array(part).buffer; // create new array to update buffer
                                          // and get the buffer

console.log(buffer);
link|improve this answer
Websocket can only send ArrayBuffer not Uint8Array or others – Demion Dec 7 '11 at 18:43
1  
@Demion: I know, the input and output is an ArrayBuffer here (origBuffer and buffer). – pimvdb Dec 7 '11 at 18:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.