Constructors

Link copied to clipboard
constructor(call: HttpClientCall, delegate: DefaultWebSocketSession)

Properties

Link copied to clipboard
open override val call: HttpClientCall

HttpClientCall associated with session.

Link copied to clipboard
open override val closeReason: Deferred<CloseReason?>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override val extensions: List<WebSocketExtension<*>>
Link copied to clipboard
open override val incoming: ReceiveChannel<Frame>
Link copied to clipboard
open override var masking: Boolean
Link copied to clipboard
open override var maxFrameSize: Long
Link copied to clipboard
open override val outgoing: SendChannel<Frame>
Link copied to clipboard
open override var pingIntervalMillis: Long
Link copied to clipboard
open override var timeoutMillis: Long

Functions

Link copied to clipboard
open suspend override fun flush()
Link copied to clipboard
Link copied to clipboard

Dequeues a frame and deserializes it to the type T using WebSocket content converter. May throw an exception WebsocketDeserializeException if the converter can't deserialize frame data to type T. May throw WebsocketDeserializeException if the received frame type is not Frame.Text or Frame.Binary. In this case, WebsocketDeserializeException.frame contains the received frame. May throw ClosedReceiveChannelException if a channel was closed

Link copied to clipboard
open suspend override fun send(frame: Frame)
Link copied to clipboard
inline suspend fun <T> DefaultClientWebSocketSession.sendSerialized(data: T)

Serializes data to a frame and enqueues this frame. May suspend if the outgoing queue is full. If the outgoing channel is already closed, throws an exception, so it is impossible to transfer any message. Frames sent after a Close frame are silently ignored. Note that a Close frame could be sent automatically in reply to a peer's Close frame unless it is a raw WebSocket session.

Link copied to clipboard
open override fun start(negotiatedExtensions: List<WebSocketExtension<*>>)
Link copied to clipboard
open override fun terminate()