Class

akka.stream.testkit.TestPublisher

Probe

Related Doc: package TestPublisher

Permalink

class Probe[T] extends ManualProbe[T]

Single subscription and demand tracking for TestPublisher.ManualProbe.

Source
StreamTestKit.scala
Linear Supertypes
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]

    Permalink
    Definition Classes
    ProbeManualProbe

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    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)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def ensureSubscription(): Unit

    Permalink

    Asserts that a subscription has been received or will be received

  9. def ensuring(cond: (Probe[T]) ⇒ Boolean, msg: ⇒ Any): Probe[T]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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]

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def executeAfterSubscription[T](f: ⇒ T): T

    Permalink
    Definition Classes
    ManualProbe
  16. def expectCancellation(): Self

    Permalink
  17. def expectEventPF[T](f: PartialFunction[PublisherEvent, T]): T

    Permalink
    Definition Classes
    ManualProbe
  18. def expectNoMessage(max: FiniteDuration): Self

    Permalink

    Expect no messages for a given duration.

    Expect no messages for a given duration.

    Definition Classes
    ManualProbe
  19. def expectRequest(): Long

    Permalink
  20. def expectRequest(subscription: Subscription, n: Int): Self

    Permalink

    Expect demand from a given subscription.

    Expect demand from a given subscription.

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

    Permalink

    Expect a subscription.

    Expect a subscription.

    Definition Classes
    ManualProbe
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    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[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. def getPublisher: Publisher[T]

    Permalink
    Definition Classes
    ManualProbe
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def pending: Long

    Permalink

    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]

    Permalink

    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

    Permalink
  34. def sendError(cause: Throwable): Self

    Permalink
  35. def sendNext(elem: T): Self

    Permalink
  36. def subscribe(subscriber: Subscriber[_ >: T]): Unit

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def unsafeSendNext(elem: T): Self

    Permalink
  40. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def within[T](max: FiniteDuration)(f: ⇒ T): T

    Permalink

    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

    Permalink

    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)

    Permalink
    Implicit information
    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

    Permalink

    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

    Permalink

    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

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