Data buffer stream peer. Data buffer stream peer that uses a byte array as the stream. This object can be used to handle binary data from network sessions. To handle binary data stored in files, [File] can be used directly. A [StreamPeerBuffer] object keeps an internal cursor which is the offset in bytes to the start of the buffer. Get and put operations are performed at the cursor position and will move the cursor accordingly. Clears the [member data_array] and resets the cursor. Returns a new [StreamPeerBuffer] with the same [member data_array] content. Returns the current cursor position. Returns the size of [member data_array]. Resizes the [member data_array]. This [i]doesn't[/i] update the cursor. Moves the cursor to the specified position. [param position] must be a valid index of [member data_array]. The underlying data buffer. Setting this value resets the cursor.