object Probes

Probes, for debugging reactive streams.

Source
Probes.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Probes
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def flowProbe[T](name: String, messageLogger: (T) => String = (t: T) => t.toString): Flow[T, T, _]
  2. def processorProbe[In, Out](name: String, processor: Processor[In, Out], inLogger: (In) => String = (in: In) => in.toString, outLogger: (Out) => String = (out: Out) => out.toString): Processor[In, Out]
  3. def publisherProbe[T](name: String, publisher: Publisher[T], messageLogger: (T) => String = (t: T) => t.toString): Publisher[T]
  4. def subscriberProbe[T](name: String, subscriber: Subscriber[_ >: T], messageLogger: (T) => String = (t: T) => t.toString, start: Long = System.nanoTime()): Subscriber[T]
  5. def subscriptionProbe(name: String, subscription: Subscription, start: Long = System.nanoTime()): Subscription