智能客服
你问我答,随时在线为你解决问题

























您当前正在浏览HarmonyOS开发者3.0版本配套的开发者文档,对应API能力级别为API 8 Release。此版本文档已归档不再维护,推荐您使用HarmonyOS NEXT版本。
收起 自动换行 深色代码主题 复制 |
A channel that implements this interface is a channel to a network socket. The bind method is used to bind the socket to a local SocketAddress, the getLocalAddress method returns the address that the socket is bound to, and the setOption and getOption methods are used to set and query socket options. An implementation of this interface should specify the socket options that it supports.
The bind and setOption methods that do not otherwise have a value to return are specified to return the network channel upon which they are invoked. This allows method invocations to be chained. Implementations of this interface should specialize the return type so that method invocations on the implementation class can be chained.
Since:
1.7Modifier and Type | Method | Description |
|---|---|---|
bind(SocketAddress local) | Binds the channel's socket to a local address. | |
Returns the socket address that this channel's socket is bound to. | ||
<T> T | getOption(SocketOption<T> name) | Returns the value of a socket option. |
<T> NetworkChannel | setOption(SocketOption<T> name, T value) | Sets the value of a socket option. |
Set<SocketOption<?>> | Returns a set of the socket options supported by this channel. |
NetworkChannel bind(SocketAddress local) throws IOException
Binds the channel's socket to a local address.This method is used to establish an association between the socket and a local address. Once an association is established then the socket remains bound until the channel is closed. If the local parameter has the value null then the socket will be bound to an address that is assigned automatically.
Parameters:
Parameter Name | Parameter Description |
|---|---|
local | The address to bind the socket, or null to bind the socket to an automatically assigned socket address |
Returns:
This channel
Throws:
Throw Name | Throw Description |
|---|---|
If the socket is already bound | |
If the type of the given address is not supported | |
If the channel is closed | |
If some other I/O error occurs | |
If a security manager is installed and it denies an unspecified permission. An implementation of this interface should specify any required permissions. |
See Also:
SocketAddress getLocalAddress() throws IOException
Returns the socket address that this channel's socket is bound to.Where the channel is bound to an Internet Protocol socket address then the return value from this method is of type InetSocketAddress.
Returns:
The socket address that the socket is bound to, or null if the channel's socket is not bound
Throws:
Throw Name | Throw Description |
|---|---|
If the channel is closed | |
If an I/O error occurs |
<T> NetworkChannel setOption(SocketOption<T> name, T value) throws IOException
Sets the value of a socket option.Type Parameters:
Type Parameter Name | Type Parameter Description |
|---|---|
T | The type of the socket option value |
Parameters:
Parameter Name | Parameter Description |
|---|---|
name | The socket option |
value | The value of the socket option. A value of null may be a valid value for some socket options. |
Returns:
This channel
Throws:
Throw Name | Throw Description |
|---|---|
If the socket option is not supported by this channel | |
If the value is not a valid value for this socket option | |
If this channel is closed | |
If an I/O error occurs |
See Also:
<T> T getOption(SocketOption<T> name) throws IOException
Returns the value of a socket option.Type Parameters:
Type Parameter Name | Type Parameter Description |
|---|---|
T | The type of the socket option value |
Parameters:
Parameter Name | Parameter Description |
|---|---|
name | The socket option |
Returns:
The value of the socket option. A value of null may be a valid value for some socket options.
Throws:
Throw Name | Throw Description |
|---|---|
If the socket option is not supported by this channel | |
If this channel is closed | |
If an I/O error occurs |
See Also:
Set<SocketOption<?>> supportedOptions()
Returns a set of the socket options supported by this channel.This method will continue to return the set of options even after the channel has been closed.
Returns:
A set of the socket options supported by this channel
智能客服
你问我答,随时在线为你解决问题
合作咨询
我们的专家服务团队将竭诚为您提供专业的合作咨询服务
解决方案
精准高效的一站式服务支持,助力开发者商业成功