Packages

class WebSocketStub[S] extends AnyRef

A stub for websockets that uses a queue of frames which are returned when the client calls WebSocket.receive.

New messages can be added to queue in reaction to WebSocket.send being invoked, by specifying the behavior using one of the thenRespond variants.

For more complex cases, please provide your own implementation of WebSocket.

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

Instance Constructors

  1. new WebSocketStub(initialResponses: List[Try[WebSocketFrame]], initialState: S, makeNewResponses: (S, WebSocketFrame) ⇒ (S, List[Try[WebSocketFrame]]))

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 build[F[_]](implicit m: MonadError[F]): WebSocket[F]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def thenRespond(addReceived: (WebSocketFrame) ⇒ List[WebSocketFrame]): WebSocketStub[Unit]

    Creates a stub that has the same initial receive frames, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

  17. def thenRespondS[S2](initial: S2)(onSend: (S2, WebSocketFrame) ⇒ (S2, List[WebSocketFrame])): WebSocketStub[S2]

    Creates a stub that has the same initial responses, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    Creates a stub that has the same initial responses, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    More powerful version of thenRespond(), as the given function can additionally use state and implement stateful logic for computing response messages.

  18. def thenRespondWith(addReceived: (WebSocketFrame) ⇒ List[Try[WebSocketFrame]]): WebSocketStub[Unit]

    Creates a stub that has the same initial receive frames, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    Creates a stub that has the same initial receive frames, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    More powerful version of thenRespond() which allows receiving to fail with an exception.

  19. def thenRespondWithS[S2](initial: S2)(onSend: (S2, WebSocketFrame) ⇒ (S2, List[Try[WebSocketFrame]])): WebSocketStub[S2]

    Creates a stub that has the same initial responses, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    Creates a stub that has the same initial responses, but replaces the function that adds responses to be received in reaction to WebSocket.send being invoked.

    More powerful version of:

    • thenRespond(), as the given function can additionally use state and implement stateful logic for computing response messages.
    • thenRespondS() which allows receiving to fail with an exception.
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

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