Class/Object

datto.flow

Generator

Related Docs: object Generator | package flow

Permalink

class Generator[+T, +Out] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Generator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Generator(source: () ⇒ Future[Source[T, Future[Out]]])

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  5. def classifyErrors[Out2 >: Out](classifier: PartialFunction[Throwable, Throwable])(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def concat[U >: T](other: Generator[U, _])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  8. def concatMat[U >: T, Out2, Out3](other: Generator[U, Out2])(combine: (Future[Out], Future[Out2]) ⇒ Future[Out3])(implicit ec: ExecutionContext): Generator[U, Out3]

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def filter(predicate: (T) ⇒ Boolean)(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMapConcat[U](parallelism: Int)(f: (T) ⇒ Generator[U, Unit])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  14. def flatMapMaterializedValue[Out2](f: (Out) ⇒ Future[Out2])(implicit ec: ExecutionContext): Generator[T, Out2]

    Permalink
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def grouped(size: Int)(implicit ec: ExecutionContext): Generator[Seq[T], Out]

    Permalink
  17. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  19. def map[U](f: (T) ⇒ U)(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  20. def mapAsync[U](parallelism: Int)(f: (T) ⇒ Future[U])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  21. def mapAsyncOrdered[U](parallelism: Int)(f: (T) ⇒ Future[U])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  22. def mapConcat[U](f: (T) ⇒ Iterable[U])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  23. def mapMaterializedValue[Out2](f: (Out) ⇒ Out2)(implicit ec: ExecutionContext): Generator[T, Out2]

    Permalink
  24. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  27. def orElse[U >: T, Out2 >: Out](other: Generator[U, Out2])(implicit ec: ExecutionContext): Generator[U, Out2]

    Permalink
  28. def recoverMaterializedValue[Out2 >: Out](p: PartialFunction[Throwable, Out2])(implicit ec: ExecutionContext): Generator[T, Out2]

    Permalink
  29. def recoverWithMaterializedValue[Out2 >: Out](p: PartialFunction[Throwable, Future[Out2]])(implicit ec: ExecutionContext): Generator[T, Out2]

    Permalink
  30. def runWith[Out2](sink: Sink[T, Future[Out2]])(implicit ec: ExecutionContext, mat: ActorMaterializer): Future[Out2]

    Permalink
  31. def runWithMat[Out2, Out3](sink: Sink[T, Future[Out2]])(combine: (Future[Out], Future[Out2]) ⇒ Future[Out3])(implicit ec: ExecutionContext, mat: ActorMaterializer): Future[Out3]

    Permalink
  32. val source: () ⇒ Future[Source[T, Future[Out]]]

    Permalink
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  34. def throttle(elements: Int, per: FiniteDuration, maximumBurst: Int, costCalculation: (T) ⇒ Int, mode: ThrottleMode)(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  35. def throttle(elements: Int, per: FiniteDuration, maximumBurst: Int, costCalculation: (T) ⇒ Int)(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  36. def throttle(elements: Int, per: FiniteDuration, maximumBurst: Int)(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  37. def throttle(elements: Int, per: FiniteDuration = 1.second)(implicit ec: ExecutionContext): Generator[T, Out]

    Permalink
  38. def to[Out2](sink: Sink[T, Out2])(implicit ec: ExecutionContext): Future[RunnableGraph[Future[Out]]]

    Permalink
  39. def toMat[Out2, Out3](sink: Sink[T, Out2])(combine: (Future[Out], Out2) ⇒ Out3)(implicit ec: ExecutionContext): Future[RunnableGraph[Out3]]

    Permalink
  40. def toSource(implicit ec: ExecutionContext): Source[T, Future[Out]]

    Permalink
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. def via[U](flow: Flow[T, U, NotUsed])(implicit ec: ExecutionContext): Generator[U, Out]

    Permalink
  43. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped