Added in API level 24
SocketOption
interface SocketOption<T : Any!>
java.net.SocketOption |
A socket option associated with a socket.
In the channels
package, the interface defines the setOption
and getOption
methods to set and query the channel's socket options.
Summary
Public methods | |
---|---|
abstract String! |
name() Returns the name of the socket option. |
abstract Class<T>! |
type() Returns the type of the socket option value. |
Public methods
name
Added in API level 24
abstract fun name(): String!
Returns the name of the socket option.
Return | |
---|---|
String! |
the name of the socket option |
type
Added in API level 24
abstract fun type(): Class<T>!
Returns the type of the socket option value.
Return | |
---|---|
Class<T>! |
the type of the socket option value |