ClientWebSocketSession
interface ClientWebSocketSession : WebSocketSession
Client specific WebSocketSession.
Properties
abstract val call: HttpClientCall HttpClientCall associated with session. |
Inherited Properties
abstract val extensions: List<WebSocketExtension<*>> Negotiated WebSocket extensions. |
|
abstract val incoming: ReceiveChannel<Frame> Incoming frames channel |
|
abstract var masking: Boolean Enable or disable masking output messages by a random xor mask. Please note that changing this flag on the fly could be applied to the messages already sent (enqueued earlier) as the sending pipeline works asynchronously |
|
abstract var maxFrameSize: Long Specifies frame size limit. Connection will be closed if violated |
|
abstract val outgoing: SendChannel<Frame> Outgoing frames channel. It could have limited capacity so sending too much frames may lead to suspension at corresponding send invocations. It also may suspend if a peer doesn’t read frames for some reason. |
Inherited Functions
abstract suspend fun flush(): Unit Flush all outstanding messages and suspend until all earlier sent messages will be written. Could be called at any time even after close. May return immediately if the connection is already terminated. However it may also fail with an exception (or cancellation) at any point due to session failure. Please note that flush doesn’t guarantee that frames were actually delivered. |
|
Enqueue frame, may suspend if outgoing queue is full. May throw an exception if outgoing channel is already closed so it is impossible to transfer any message. Frames that were sent after close frame could be silently ignored. Please note that close frame could be sent automatically in reply to a peer close frame unless it is raw websocket session. |
|
abstract fun Initiate connection termination immediately. Termination may complete asynchronously. |
Extension Functions
suspend fun WebSocketSession.close( Send a close frame with the specified reason. May suspend if outgoing channel is full. The specified reason could be ignored if there was already close frame sent (for example in reply to a peer close frame). It also may do nothing when a session or an outgoing channel is already closed due to any reason. suspend fun WebSocketSession. Closes with reason depending on cause or normally if cause is |
|
suspend fun WebSocketSession.closeExceptionally( Closes session with normal or error close reason, depending on whether cause is cancellation or not. |
|
fun CoroutineScope. fun CoroutineScope.decodeChunked( Start a chunked stream decoder coroutine |
|
fun <TEngine : ApplicationEngine, TConfiguration : Configuration> CoroutineScope.embeddedServer( Creates an embedded server with the given factory, listening on host:port |
|
fun <T : WebSocketExtension<*>> WebSocketSession.extension( Find the extensions using WebSocketExtensionFactory. |
|
fun <T : WebSocketExtension<*>> WebSocketSession.extensionOrNull( Search the extensions using WebSocketExtensionFactory. |
|
fun CoroutineScope.httpServer( Start an http server with settings invoking handler for every request |
|
fun CoroutineScope. Start an http server with settings invoking handler for every request |
|
fun CoroutineScope.mapEngineExceptions( Returns ByteReadChannel with ByteChannel.close handler that returns SocketTimeoutException instead of SocketTimeoutException. fun CoroutineScope.mapEngineExceptions( Returns ByteWriteChannel with ByteChannel.close handler that returns SocketTimeoutException instead of SocketTimeoutException. |
|
fun CoroutineScope.parseMultipart( fun CoroutineScope.parseMultipart( fun CoroutineScope. Starts a multipart parser coroutine producing multipart events |
|
fun CoroutineScope.pinger( Launch pinger coroutine on CoroutineScope that is sending ping every specified period to outgoing channel, waiting for and verifying client’s pong frames. It is also handling timeout and sending timeout close frame fun CoroutineScope.pinger( Launch pinger coroutine on CoroutineScope that is sending ping every specified periodMillis to outgoing channel, waiting for and verifying client’s pong frames. It is also handling timeoutMillis and sending timeout close frame |
|
fun CoroutineScope.pinger( Launch pinger coroutine on CoroutineScope that is sending ping every specified period to outgoing channel, waiting for and verifying client’s pong frames. It is also handling timeout and sending timeout close frame |
|
fun CoroutineScope.ponger( Launch a ponger actor job on the CoroutineScope sending pongs to outgoing channel. It is acting for every client’s ping frame and replying with corresponding pong |
|
fun CoroutineScope.reader( fun CoroutineScope.reader( |
|
suspend fun WebSocketSession.send(content: String): Unit Enqueues a text frame for sending with the specified content. suspend fun WebSocketSession.send(content: ByteArray): Unit Enqueues a final binary frame for sending with the specified content. |
|
fun CoroutineScope. Start connection HTTP pipeline invoking handler for every request. Note that handler could be invoked multiple times concurrently due to HTTP pipeline nature |
|
fun CoroutineScope.startServerConnectionPipeline( Start connection HTTP pipeline invoking handler for every request. Note that handler could be invoked multiple times concurrently due to HTTP pipeline nature |
|
fun CoroutineScope. Start multirange response writer coroutine |
|
fun CoroutineScope.writer( fun CoroutineScope.writer( |
Inheritors
class DefaultClientWebSocketSession : ClientSpecific DefaultWebSocketSession. |