sendByteBuffer 方法
- @JSName('send')
- ByteBuffer data
通过此连接向服务器传输数据。
此方法接受类型为 Blob、ByteBuffer、String 或 TypedData 的数据。相比之下,具有名称变体的 sendBlob、sendByteBuffer、sendString 或 sendTypedData 只接受指定类型的数据。
实现
@JSName('send')
/**
* Transmit data to the server over this connection.
*
* This method accepts data of type [Blob], [ByteBuffer], [String], or
* [TypedData]. Named variants [sendBlob], [sendByteBuffer], [sendString],
* or [sendTypedData], in contrast, only accept data of the specified type.
*/
void sendByteBuffer(ByteBuffer data) native;