--- title: WebSocket.bufferedAmount slug: Web/API/WebSocket/bufferedAmount tags: - API - Property - Reference - Web API - WebSocket translation_of: Web/API/WebSocket/bufferedAmount ---

{{APIRef("Web Sockets API")}}

WebSocket.bufferedAmount是一个只读属性,用于返回已经被{{manch("send")}}方法放入队列中但还没有被发送到网络中的数据的字节数。一旦队列中的所有数据被发送至网络,则该属性值将被重置为0。但是,若在发送过程中连接被关闭,则属性值不会重置为0。如果你不断地调用{{manch("send")}},则该属性值会持续增长

The WebSocket.bufferedAmount read-only property returns the number of bytes of data that have been queued using calls to {{manch("send")}} but not yet transmitted to the network. This value resets to zero once all queued data has been sent. This value does not reset to zero when the connection is closed; if you keep calling {{manch("send")}}, this will continue to climb.

Syntax

var bufferedAmount = aWebSocket.bufferedAmount;

Value

An unsigned long.

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', '#dom-websocket-bufferedamount', 'WebSocket: bufferedAmount')}} {{Spec2('HTML WHATWG')}} Initial definition

Browser compatibility

{{Compat("api.WebSocket.bufferedAmount")}}