implicit final class TimedFlowDsl[I, O, Mat] extends AnyVal
Provides time measurement utilities on Stream elements.
See Timed
- Source
- Implicits.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- TimedFlowDsl
- AnyVal
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- val flow: Flow[I, O, Mat]
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
def
timed[Out, Mat2](measuredOps: (Flow[I, O, Mat]) ⇒ Flow[I, Out, Mat2], onComplete: (FiniteDuration) ⇒ Unit): Flow[I, Out, Mat2]
Measures time from receiving the first element and completion events - one for each subscriber of this
Flow
.Measures time from receiving the first element and completion events - one for each subscriber of this
Flow
.- Annotations
- @silent()
-
def
timedIntervalBetween(matching: (O) ⇒ Boolean, onInterval: (FiniteDuration) ⇒ Unit): Flow[I, O, Mat]
Measures rolling interval between immediately subsequent
matching(o: O)
elements.Measures rolling interval between immediately subsequent
matching(o: O)
elements.- Annotations
- @silent()