interface ABoundSocket
Represents a bound socket
abstract val localAddress: <ERROR CLASS>
Local socket address. Could throw an exception if no address bound yet. |
interface BoundDatagramSocket : ASocket, ABoundSocket, AReadable, DatagramReadWriteChannel
Represents a bound datagram socket |
|
interface ConnectedDatagramSocket : ASocket, ABoundSocket, AConnectedSocket, ReadWriteSocket, DatagramReadWriteChannel
Represents a connected datagram socket. |
|
interface ServerSocket : ASocket, ABoundSocket, Acceptable<Socket>
Represents a server bound socket ready for accepting connections |
|
interface Socket : ReadWriteSocket, ABoundSocket, AConnectedSocket
Represents a connected socket |