class WebSocketStub[S] extends AnyRef
A simple stub for websockets that uses a queue of responses 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 variatns.
For more complex cases, please provide your own implementation of WebSocket.
- Alphabetic
- By Inheritance
- WebSocketStub
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
thenRespond(addReceived: (WebSocketFrame) ⇒ List[Incoming]): WebSocketStub[Unit]
Creates a stub that has the same initial responses, but replaces the function that adds messages to be received using WebSocket.receive, in reaction to WebSocket.send being invoked.
-
def
thenRespondS[S2](initial: S2)(onSend: (S2, WebSocketFrame) ⇒ (S2, List[Incoming])): WebSocketStub[S2]
Creates a stub that has the same initial responses, but replaces the function that adds responses to be received using WebSocket.receive, 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 using WebSocket.receive, 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.
-
def
thenRespondWith(addReceived: (WebSocketFrame) ⇒ List[Try[Either[Close, Incoming]]]): WebSocketStub[Unit]
Creates a stub that has the same initial responses, but replaces the function that adds responses to be received using WebSocket.receive, 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 using WebSocket.receive, in reaction to WebSocket.send being invoked.
More powerful version of thenRespond, as can result in the websocket to become closed.
-
def
thenRespondWithS[S2](initial: S2)(onSend: (S2, WebSocketFrame) ⇒ (S2, List[Try[Either[Close, Incoming]]])): WebSocketStub[S2]
Creates a stub that has the same initial responses, but replaces the function that adds responses to be received using WebSocket.receive, 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 using WebSocket.receive, 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, as well as result in the websocket to become closed.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )