ReadWriteSocket

Represents both readable and writable socket

Functions

Link copied to clipboard
abstract fun attachForReading(channel: ByteChannel): WriterJob

Attach channel for reading so incoming bytes appears in the attached channel. Only one channel could be attached

Link copied to clipboard
abstract fun attachForWriting(channel: ByteChannel): ReaderJob

Attach channel for writing so bytes written to the attached channel will be transmitted Only one channel could be attached

Link copied to clipboard
expect abstract fun close()
Link copied to clipboard
open override fun dispose()

Properties

Link copied to clipboard
abstract val socketContext: Job

Represents a socket lifetime, completes at socket closure

Inheritors

Link copied to clipboard
Link copied to clipboard

Extensions

Link copied to clipboard
suspend fun ASocket.awaitClosed()

Await until socket close

Link copied to clipboard

Check if the socket is closed

Link copied to clipboard

Open a read channel, could be done only once

Link copied to clipboard

Open a write channel, could be opened only once