class WSProbe extends AnyRef
A WSProbe is a probe that implements a Flow[Message, Message, Unit] for testing
websocket code.
Requesting elements is handled automatically.
- Source
 - WSProbe.scala
 
- Alphabetic
 - By Inheritance
 
- WSProbe
 - AnyRef
 - Any
 
- by any2stringadd
 - by StringFormat
 - by Ensuring
 - by ArrowAssoc
 
- Hide All
 - Show All
 
- Public
 - Protected
 
Instance Constructors
-  new WSProbe(delegate: scaladsl.testkit.WSProbe)
 
Value Members
-   final  def !=(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def ##: Int
- Definition Classes
 - AnyRef → Any
 
 -  def +(other: String): String
 -  def ->[B](y: B): (WSProbe, B)
 -   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(classOf[java.lang.CloneNotSupportedException]) @native()
 
 -  def ensuring(cond: (WSProbe) => Boolean, msg: => Any): WSProbe
 -  def ensuring(cond: (WSProbe) => Boolean): WSProbe
 -  def ensuring(cond: Boolean, msg: => Any): WSProbe
 -  def ensuring(cond: Boolean): WSProbe
 -   final  def eq(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -    def equals(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef → Any
 
 -    def expectCompletion(): Unit
Expect completion on the input side of the flow.
 -    def expectMessage(bytes: ByteString): Unit
Expect a binary message on the input side of the flow and compares its payload with the given one.
Expect a binary message on the input side of the flow and compares its payload with the given one. If the received message is streamed its contents are collected and then asserted against the given ByteString.
 -    def expectMessage(text: String): Unit
Expect a text message on the input side of the flow and compares its payload with the given one.
Expect a text message on the input side of the flow and compares its payload with the given one. If the received message is streamed its contents are collected and then asserted against the given String.
 -    def expectMessage(): Message
Expect a message on the input side of the flow.
 -    def expectNoMessage(max: FiniteDuration): Unit
Expect no message on the input side of the flow for the given maximum duration.
 -    def expectNoMessage(): Unit
Expect no message on the input side of the flow.
 -    def finalize(): Unit
- Attributes
 - protected[lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.Throwable])
 
 -  def flow: Flow[Message, Message, NotUsed]
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -    def hashCode(): Int
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -   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()
 
 -   final  def notifyAll(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -    def sendCompletion(): Unit
Complete the output side of the flow.
 -    def sendMessage(bytes: ByteString): Unit
Send a binary message containing the given bytes out of the flow.
 -    def sendMessage(text: String): Unit
Send a text message containing the given string out of the flow.
 -    def sendMessage(message: Message): Unit
Send the given messages out of the flow.
 -   final  def synchronized[T0](arg0: => T0): T0
- Definition Classes
 - AnyRef
 
 -    def toString(): String
- Definition Classes
 - AnyRef → Any
 
 -   final  def wait(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException]) @native()
 
 
Deprecated Value Members
-    def formatted(fmtstr: String): String
- Implicit
 - This member is added by an implicit conversion from WSProbe toStringFormat[WSProbe] performed by method StringFormat in scala.Predef.
 - Definition Classes
 - StringFormat
 - Annotations
 - @deprecated @inline()
 - Deprecated
 (Since version 2.12.16) Use
formatString.format(value)instead ofvalue.formatted(formatString), or use thef""string interpolator. In Java 15 and later,formattedresolves to the new method in String which has reversed parameters.
 -    def →[B](y: B): (WSProbe, B)
- Implicit
 - This member is added by an implicit conversion from WSProbe toArrowAssoc[WSProbe] performed by method ArrowAssoc in scala.Predef.
 - Definition Classes
 - ArrowAssoc
 - Annotations
 - @deprecated
 - Deprecated
 (Since version 2.13.0) Use
->instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.