Packages

t

sttp.ws

WebSocket

trait WebSocket[F[_]] extends AnyRef

Effectful interactions with a web socket. Interactions can happen:

- on the frame level, by sending and receiving raw WebSocketFrames - using the provided receive* methods to obtain concatenated data frames, or string/byte payloads, and the send* method to send string/binary frames.

The send* and receive* methods may result in a failed effect, with either one of WebSocketException exceptions, or a backend-specific exception. Specifically, they will fail with WebSocketClosed if the web socket is closed.

See the either and eitherClose method to lift web socket closed events to the value level.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WebSocket
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def isOpen(): F[Boolean]
  2. implicit abstract def monad: MonadError[F]
  3. abstract def receive(): F[WebSocketFrame]

    Receive the next frame from the web socket.

    Receive the next frame from the web socket. This can be a data frame, or a control frame including WebSocketFrame.Close. After receiving a close frame, no further interactions with the web socket should happen.

    However, not all implementations expose the close frame, and web sockets might also get closed without the proper close frame exchange. In such cases, as well as when invoking receive/send after receiving a close frame, this effect will fail with the WebSocketClosed exception.

    *Should be only called sequentially!* (from a single thread/fiber). Because web socket frames might be fragmented, calling this method concurrently might result in threads/fibers receiving fragments of the same frame.

  4. abstract def send(f: WebSocketFrame, isContinuation: Boolean = false): F[Unit]

    Sends a web socket frame.

    Sends a web socket frame. Can be safely called from multiple threads.

    May result in a failed effect, in case of a network error, or if the socket is closed.

  5. abstract def upgradeHeaders: Headers

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def close(): F[Unit]

    Idempotent when used sequentially.

  7. def either[T](f: => F[T]): F[Either[Option[Close], T]]

    Returns an effect computing a:

    Returns an effect computing a:

    - Left if the web socket is closed - optionally with the received close frame (if available). - Right with the original result otherwise.

    Will never fail with a WebSocketClosed.

    f

    The effect describing web socket interactions.

  8. def eitherClose[T](f: => F[T]): F[Either[Close, T]]

    Extracts the received close frame (if available) as the left side of an either, or returns the original result on the right.

    Extracts the received close frame (if available) as the left side of an either, or returns the original result on the right.

    Will fail with WebSocketClosed if the web socket is closed, but no close frame is available.

    f

    The effect describing web socket interactions.

  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def receiveBinary(pongOnPing: Boolean): F[Array[Byte]]

    Receive a single binary message (which might come from multiple, fragmented frames).

    Receive a single binary message (which might come from multiple, fragmented frames). Ignores non-binary frames and returns combined results. Will fail with WebSocketClosed if the web socket is closed, or if a close frame is received.

    *Should be only called sequentially!* (from a single thread/fiber).

    pongOnPing

    Should a WebSocketFrame.Pong be sent when a WebSocketFrame.Ping is received.

  18. def receiveBinaryFrame(pongOnPing: Boolean = true): F[Binary]

    Receive a single binary data frame, ignoring others.

    Receive a single binary data frame, ignoring others. The frame might be a fragment. To receive whole messages, use receiveBinary. Will fail with WebSocketClosed if the web socket is closed, or if a close frame is received.

    *Should be only called sequentially!* (from a single thread/fiber).

    pongOnPing

    Should a WebSocketFrame.Pong be sent when a WebSocketFrame.Ping is received.

  19. def receiveDataFrame(pongOnPing: Boolean = true): F[Data[_]]

    Receive a single data frame, ignoring others.

    Receive a single data frame, ignoring others. The frame might be a fragment. Will fail with WebSocketClosed if the web socket is closed, or if a close frame is received.

    *Should be only called sequentially!* (from a single thread/fiber).

    pongOnPing

    Should a WebSocketFrame.Pong be sent when a WebSocketFrame.Ping is received.

  20. def receiveText(pongOnPing: Boolean = true): F[String]

    Receive a single text message (which might come from multiple, fragmented frames).

    Receive a single text message (which might come from multiple, fragmented frames). Ignores non-text frames and returns combined results. Will fail with WebSocketClosed if the web socket is closed, or if a close frame is received.

    *Should be only called sequentially!* (from a single thread/fiber).

    pongOnPing

    Should a WebSocketFrame.Pong be sent when a WebSocketFrame.Ping is received.

  21. def receiveTextFrame(pongOnPing: Boolean = true): F[Text]

    Receive a single text data frame, ignoring others.

    Receive a single text data frame, ignoring others. The frame might be a fragment. To receive whole messages, use receiveText. Will fail with WebSocketClosed if the web socket is closed, or if a close frame is received.

    *Should be only called sequentially!* (from a single thread/fiber).

    pongOnPing

    Should a WebSocketFrame.Pong be sent when a WebSocketFrame.Ping is received.

  22. def sendBinary(payload: Array[Byte]): F[Unit]

    Sends a web socket frame with the given payload.

    Sends a web socket frame with the given payload. Can be safely called from multiple threads.

    May result in a failed effect, in case of a network error, or if the socket is closed.

  23. def sendText(payload: String): F[Unit]

    Sends a web socket frame with the given payload.

    Sends a web socket frame with the given payload. Can be safely called from multiple threads.

    May result in a failed effect, in case of a network error, or if the socket is closed.

  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped