Packages

class Probe[T] extends ManualProbe[T]

Single subscription and demand tracking for TestPublisher.ManualProbe.

Source
StreamTestKit.scala
Linear Supertypes
ManualProbe[T], Publisher[T], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Probe
  2. ManualProbe
  3. Publisher
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Self = Probe[T]
    Definition Classes
    ProbeManualProbe

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Probe[T] to any2stringadd[Probe[T]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Probe[T], B)
    Implicit
    This member is added by an implicit conversion from Probe[T] to ArrowAssoc[Probe[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  8. def ensureSubscription(): Unit

    Asserts that a subscription has been received or will be received

  9. def ensuring(cond: (Probe[T]) ⇒ Boolean, msg: ⇒ Any): Probe[T]
    Implicit
    This member is added by an implicit conversion from Probe[T] to Ensuring[Probe[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (Probe[T]) ⇒ Boolean): Probe[T]
    Implicit
    This member is added by an implicit conversion from Probe[T] to Ensuring[Probe[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): Probe[T]
    Implicit
    This member is added by an implicit conversion from Probe[T] to Ensuring[Probe[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): Probe[T]
    Implicit
    This member is added by an implicit conversion from Probe[T] to Ensuring[Probe[T]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def executeAfterSubscription[T](f: ⇒ T): T
    Definition Classes
    ManualProbe
  16. def expectCancellation(): Self
  17. def expectEventPF[T](f: PartialFunction[PublisherEvent, T]): T
    Definition Classes
    ManualProbe
  18. def expectNoMessage(max: FiniteDuration): Self

    Expect no messages for a given duration.

    Expect no messages for a given duration.

    Definition Classes
    ManualProbe
  19. def expectNoMessage(): Self

    Expect no messages.

    Expect no messages.

    Definition Classes
    ManualProbe
  20. def expectRequest(): Long
  21. def expectRequest(subscription: Subscription, n: Int): Self

    Expect demand from a given subscription.

    Expect demand from a given subscription.

    Definition Classes
    ManualProbe
  22. def expectSubscription(): PublisherProbeSubscription[T]

    Expect a subscription.

    Expect a subscription.

    Definition Classes
    ManualProbe
  23. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Probe[T] to StringFormat[Probe[T]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  24. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. def getPublisher: Publisher[T]
    Definition Classes
    ManualProbe
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. def pending: Long

    Current pending requests.

  32. def receiveWhile[T](max: Duration = Duration.Undefined, idle: Duration = Duration.Inf, messages: Int = Int.MaxValue)(f: PartialFunction[PublisherEvent, T]): Seq[T]

    Receive messages for a given duration or until one does not match a given partial function.

    Receive messages for a given duration or until one does not match a given partial function.

    Definition Classes
    ManualProbe
  33. def sendComplete(): Self
  34. def sendError(cause: Throwable): Self
  35. def sendNext(elem: T): Self
  36. def subscribe(subscriber: Subscriber[_ >: T]): Unit

    Subscribes a given org.reactivestreams.Subscriber to this probe publisher.

    Subscribes a given org.reactivestreams.Subscriber to this probe publisher.

    Definition Classes
    ManualProbe → Publisher
  37. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def unsafeSendNext(elem: T): Self
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def within[T](max: FiniteDuration)(f: ⇒ T): T

    Same as calling within(0 seconds, max)(f).

    Same as calling within(0 seconds, max)(f).

    Definition Classes
    ManualProbe
  44. def within[T](min: FiniteDuration, max: FiniteDuration)(f: ⇒ T): T

    Execute code block while bounding its execution time between min and max.

    Execute code block while bounding its execution time between min and max. within blocks may be nested. All methods in this trait which take maximum wait times are available in a version which implicitly uses the remaining time governed by the innermost enclosing within block.

    Note that the timeout is scaled using Duration.dilated, which uses the configuration entry "akka.test.timefactor", while the min Duration is not.

    val ret = within(50 millis) {
      test ! "ping"
      expectMsgClass(classOf[String])
    }
    Definition Classes
    ManualProbe
  45. def [B](y: B): (Probe[T], B)
    Implicit
    This member is added by an implicit conversion from Probe[T] to ArrowAssoc[Probe[T]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. def expectNoMsg(max: FiniteDuration): Self

    Expect no messages for a given duration.

    Expect no messages for a given duration. NOTE! Timeout value is automatically multiplied by timeFactor.

    Definition Classes
    ManualProbe
    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.5) Use expectNoMessage instead

  2. def expectNoMsg(): Self

    Expect no messages.

    Expect no messages. NOTE! Timeout value is automatically multiplied by timeFactor.

    Definition Classes
    ManualProbe
    Annotations
    @deprecated
    Deprecated

    (Since version 2.5.5) Use expectNoMessage instead

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from ManualProbe[T]

Inherited from Publisher[T]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Probe[T] to any2stringadd[Probe[T]]

Inherited by implicit conversion StringFormat from Probe[T] to StringFormat[Probe[T]]

Inherited by implicit conversion Ensuring from Probe[T] to Ensuring[Probe[T]]

Inherited by implicit conversion ArrowAssoc from Probe[T] to ArrowAssoc[Probe[T]]

Ungrouped