deno.conn
继承关系
索引
Properties
Methods
Properties
localAddr
localAddr: Addr
连接的本地地址。
The local address of the connection.
remoteAddr
remoteAddr: Addr
连接的远程地址。
The remote address of the connection.
rid
rid: number
连接的资源 ID。
The resource ID of the connection.
Methods
close
-
close(): void
-
返回 void
closeRead
-
closeRead(): void
-
关闭 (
shutdown(2)
) TCP 连接的读取端。大多数调用者应该只使用close()
。Shuts down (
shutdown(2)
) the reading side of the TCP connection. Most callers should just useclose()
.返回 void
closeWrite
-
closeWrite(): void
-
关闭 (
shutdown(2)
) TCP 连接的写入端。大多数调用者应该只使用close()
。Shuts down (
shutdown(2)
) the writing side of the TCP connection. Most callers should just useclose()
.返回 void
read
-
read(p: Uint8Array): Promise<number | unique symbol>
-
最多读取
p.byteLength
个字节到p中,然后返回读取的字节数(0 < n <= p.byteLength
),并在遇到任何错误时返回拒绝状态的回调函数。 即使read()
返回值为n < p.byteLength
,p也可能在调用期间被用作临时空间。 如果有数据可用,但不存在p.byteLength
,read()
通常会返回可用值,而不是等待更多。Reads up to
p.byteLength
bytes intop
. It resolves to the number of bytes read (0
<n
<=p.byteLength
) and rejects if any error encountered. Even ifread()
resolves ton
<p.byteLength
, it may use all ofp
as scratch space during the call. If some data is available but notp.byteLength
bytes,read()
conventionally resolves to what is available instead of waiting for more.当
read()
遇到文件结束条件时,将返回Deno.EOF
符号。When
read()
encounters end-of-file condition, it resolves toDeno.EOF
symbol.当
read()
遇到错误时,它会返回拒绝状态的回调函数,参数值为错误信息。When
read()
encounters an error, it rejects with an error.调用者应始终处理返回值为
n > 0
的情况,然后再考虑EOF
。 应正确处理在读取一些字节以及两种被允许的EOF行为之后可能发生的 I/O 错误。Callers should always process the
n
>0
bytes returned before considering theEOF
. Doing so correctly handles I/O errors that happen after reading some bytes and also both of the allowed EOF behaviors.实现不应保留对
p
的引用。Implementations should not retain a reference to
p
.参数
-
p: Uint8Array
返回 Promise<number | unique symbol>
-
write
-
write(p: Uint8Array): Promise<number>
-
将
p
中的p.byteLength
字节写入底层数据流。 它 resolve 时返回值为从p
写入的 字节数(0
<=n
<=p.byteLength
),reject 时返回值为导致写入提前停止的错误。 如果将要 resolve 一个n
<p.byteLength
的值时,write()
必须 reject,并且返回 一个非空错误。write()
禁止修改分片数据,即使是临时修改。Writes
p.byteLength
bytes fromp
to the underlying data stream. It resolves to the number of bytes written fromp
(0
<=n
<=p.byteLength
) or reject with the error encountered that caused the write to stop early.write()
must reject with a non-null error if would resolve ton
<p.byteLength
.write()
must not modify the slice data, even temporarily.实现不应保留对
p
的引用。Implementations should not retain a reference to
p
.参数
-
p: Uint8Array
返回 Promise<number>
-
图例说明
- Property
- Method
本文档使用 TypeDoc 生成。