io.iteratee.modules

FutureModule

trait FutureModule extends Module[Future] with EnumerateeModule[Future] with EnumeratorErrorModule[Future, Throwable] with IterateeErrorModule[Future, Throwable]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FutureModule
  2. IterateeErrorModule
  3. IterateeModule
  4. EnumeratorErrorModule
  5. EnumeratorModule
  6. EnumerateeModule
  7. Module
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed class LiftToIterateePartiallyApplied[E] extends AnyRef

  2. final type M[f[_]] = MonadError[f, Throwable]

    Definition Classes
    FutureModuleModule
  3. sealed class PerformPartiallyApplied[E] extends AnyRef

Abstract Value Members

  1. abstract def ec: ExecutionContext

    Attributes
    protected

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final val F: MonadError[Future, Throwable]

    Attributes
    protected
    Definition Classes
    FutureModuleModule
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def collect[O, I](pf: PartialFunction[O, I]): Enumeratee[Future, O, I]

    Transform values using a scala.PartialFunction and drop values that aren't matched.

    Transform values using a scala.PartialFunction and drop values that aren't matched.

    Definition Classes
    EnumerateeModule
  10. final def consume[E]: Iteratee[Future, E, Vector[E]]

    An Iteratee that collects all the elements in a stream in a vector.

    An Iteratee that collects all the elements in a stream in a vector.

    Definition Classes
    IterateeModule
  11. final def consumeIn[E, C[_]](implicit C: Applicative[C], M: MonoidK[C]): Iteratee[Future, E, C[E]]

    An Iteratee that collects all the elements in a stream in a given collection type.

    An Iteratee that collects all the elements in a stream in a given collection type.

    Definition Classes
    IterateeModule
  12. final def cont[E, A](ifInput: (NonEmptyList[E]) ⇒ Iteratee[Future, E, A], ifEnd: Future[A]): Iteratee[Future, E, A]

    Create an incomplete Iteratee that will use the given function to process the next input.

    Create an incomplete Iteratee that will use the given function to process the next input.

    Definition Classes
    IterateeModule
  13. final def cross[E1, E2](e2: Enumerator[Future, E2]): Enumeratee[Future, E1, (E1, E2)]

    Transform a stream by taking the cross-product with the given Enumerator.

    Transform a stream by taking the cross-product with the given Enumerator.

    Definition Classes
    EnumerateeModule
  14. final def done[E, A](value: A, remaining: List[E] = Nil): Iteratee[Future, E, A]

    Create a new completed Iteratee with the given result and leftover input.

    Create a new completed Iteratee with the given result and leftover input.

    Definition Classes
    IterateeModule
  15. final def drop[E](n: Long): Enumeratee[Future, E, E]

    An Enumeratee that drops a given number of the first values in a stream.

    An Enumeratee that drops a given number of the first values in a stream.

    Definition Classes
    EnumerateeModule
  16. final def dropI[E](n: Int): Iteratee[Future, E, Unit]

    An Iteratee that drops a given number of the values from a stream.

    An Iteratee that drops a given number of the values from a stream.

    Definition Classes
    IterateeModule
  17. final def dropWhile[E](p: (E) ⇒ Boolean): Enumeratee[Future, E, E]

    An Enumeratee that drops values from a stream as long as they satisfy the given predicate.

    An Enumeratee that drops values from a stream as long as they satisfy the given predicate.

    Definition Classes
    EnumerateeModule
  18. final def dropWhileI[E](p: (E) ⇒ Boolean): Iteratee[Future, E, Unit]

    An Iteratee that drops values from a stream as long as they satisfy the given predicate.

    An Iteratee that drops values from a stream as long as they satisfy the given predicate.

    Definition Classes
    IterateeModule
  19. final def dropWhileM[E](p: (E) ⇒ Future[Boolean]): Enumeratee[Future, E, E]

    An Enumeratee that drops values from a stream as long as they satisfy the given monadic predicate.

    An Enumeratee that drops values from a stream as long as they satisfy the given monadic predicate.

    Definition Classes
    EnumerateeModule
  20. final def empty[E]: Enumerator[Future, E]

    An empty enumerator.

    An empty enumerator.

    Definition Classes
    EnumeratorModule
  21. final def enumEither[E](either: Either[Throwable, E]): Enumerator[Future, E]

    An enumerator that either produces a single value or fails.

    An enumerator that either produces a single value or fails.

    Definition Classes
    EnumeratorErrorModule
  22. final def enumIndexedSeq[E](es: IndexedSeq[E], min: Int = 0, max: Int = Int.MaxValue): Enumerator[Future, E]

    An enumerator that produces values from a slice of an indexed sequence.

    An enumerator that produces values from a slice of an indexed sequence.

    Definition Classes
    EnumeratorModule
  23. final def enumList[E](es: List[E]): Enumerator[Future, E]

    An enumerator that produces values from a list.

    An enumerator that produces values from a list.

    Definition Classes
    EnumeratorModule
  24. final def enumOne[E](e: E): Enumerator[Future, E]

    An enumerator that produces a single value.

    An enumerator that produces a single value.

    Definition Classes
    EnumeratorModule
  25. final def enumStream[E](es: Stream[E]): Enumerator[Future, E]

    An enumerator that produces values from a stream.

    An enumerator that produces values from a stream.

    Definition Classes
    EnumeratorModule
  26. final def enumVector[E](es: Vector[E]): Enumerator[Future, E]

    An enumerator that produces values from a vector.

    An enumerator that produces values from a vector.

    Definition Classes
    EnumeratorModule
  27. final def enumerate[E](xs: E*): Enumerator[Future, E]

    An enumerator that produces the given values.

    An enumerator that produces the given values.

    Definition Classes
    EnumeratorModule
  28. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  30. final def failEnumerator[E](t: Throwable): Enumerator[Future, E]

    Create a failed enumerator with the given error.

    Create a failed enumerator with the given error.

    Definition Classes
    EnumeratorErrorModule
  31. final def failIteratee[E, A](t: Throwable): Iteratee[Future, E, A]

    Create a failed iteratee with the given error.

    Create a failed iteratee with the given error.

    Definition Classes
    IterateeErrorModule
  32. final def filter[E](p: (E) ⇒ Boolean): Enumeratee[Future, E, E]

    Drop values that do not satisfy the given predicate.

    Drop values that do not satisfy the given predicate.

    Definition Classes
    EnumerateeModule
  33. final def filterM[E](p: (E) ⇒ Future[Boolean]): Enumeratee[Future, E, E]

    Drop values that do not satisfy the given monadic predicate.

    Drop values that do not satisfy the given monadic predicate.

    Definition Classes
    EnumerateeModule
  34. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. final def flatMap[O, I](f: (O) ⇒ Enumerator[Future, I]): Enumeratee[Future, O, I]

    Map a function returning an Enumerator over a stream and flatten the results.

    Map a function returning an Enumerator over a stream and flatten the results.

    Definition Classes
    EnumerateeModule
  36. final def flatMapM[O, I](f: (O) ⇒ Future[I]): Enumeratee[Future, O, I]

    Map a function returning a value in a context over a stream.

    Map a function returning a value in a context over a stream.

    Definition Classes
    EnumerateeModule
  37. final def fold[E, A](init: A)(f: (A, E) ⇒ A): Iteratee[Future, E, A]

    An Iteratee that folds a stream using an initial value and an accumulation function.

    An Iteratee that folds a stream using an initial value and an accumulation function.

    Definition Classes
    IterateeModule
  38. final def foldM[E, A](init: A)(f: (A, E) ⇒ Future[A]): Iteratee[Future, E, A]

    An Iteratee that folds a stream using an initial value and a monadic accumulation function.

    An Iteratee that folds a stream using an initial value and a monadic accumulation function.

    Definition Classes
    IterateeModule
  39. final def foldMap[E, A](f: (E) ⇒ A)(implicit A: Monoid[A]): Iteratee[Future, E, A]

    An Iteratee that combines values using a function to a type with a cats.Monoid instance.

    An Iteratee that combines values using a function to a type with a cats.Monoid instance.

    Definition Classes
    IterateeModule
  40. final def foldMapOption[E, A](f: (E) ⇒ A)(implicit A: Semigroup[A]): Iteratee[Future, E, Option[A]]

    An Iteratee that combines values using a function to a type with a cats.Semigroup instance.

    An Iteratee that combines values using a function to a type with a cats.Semigroup instance.

    Definition Classes
    IterateeModule
  41. final def foreach[E](f: (E) ⇒ Unit): Iteratee[Future, E, Unit]

    An Iteratee that runs a function for its side effects.

    An Iteratee that runs a function for its side effects.

    Definition Classes
    IterateeModule
  42. final def foreachM[A](f: (A) ⇒ Future[Unit]): Iteratee[Future, A, Unit]

    An Iteratee that runs an effectful function for its side effects.

    An Iteratee that runs an effectful function for its side effects.

    Definition Classes
    IterateeModule
  43. final def generateM[E](f: Future[Option[E]]): Enumerator[Future, E]

    An enumerator that returns the result of an effectful operation until None is generated.

    An enumerator that returns the result of an effectful operation until None is generated.

    Definition Classes
    EnumeratorModule
  44. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  45. final def grouped[E](n: Int): Enumeratee[Future, E, Vector[E]]

    Split the stream into groups of a given length.

    Split the stream into groups of a given length.

    Definition Classes
    EnumerateeModule
  46. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  47. final def head[E]: Iteratee[Future, E, Option[E]]

    An Iteratee that returns the first value in a stream.

    An Iteratee that returns the first value in a stream.

    Definition Classes
    IterateeModule
  48. final def identity[E]: Iteratee[Future, E, Unit]

    An iteratee that reads nothing from a stream.

    An iteratee that reads nothing from a stream.

    Definition Classes
    IterateeModule
  49. final def intersperse[E](delim: E): Enumeratee[Future, E, E]

    Add a value delim between every two items in a stream.

    Add a value delim between every two items in a stream.

    Definition Classes
    EnumerateeModule
  50. final def isEnd[E]: Iteratee[Future, E, Boolean]

    An Iteratee that checks if the stream is at its end.

    An Iteratee that checks if the stream is at its end.

    Definition Classes
    IterateeModule
  51. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  52. final def iterate[E](init: E)(f: (E) ⇒ E): Enumerator[Future, E]

    An enumerator that iteratively performs an operation and returns the results.

    An enumerator that iteratively performs an operation and returns the results.

    Definition Classes
    EnumeratorModule
  53. final def iterateM[E](init: E)(f: (E) ⇒ Future[E]): Enumerator[Future, E]

    An enumerator that iteratively performs an effectful operation and returns the results.

    An enumerator that iteratively performs an effectful operation and returns the results.

    Definition Classes
    EnumeratorModule
  54. final def iterateUntil[E](init: E)(f: (E) ⇒ Option[E]): Enumerator[Future, E]

    An enumerator that iteratively performs an operation until None is produced and returns the results.

    An enumerator that iteratively performs an operation until None is produced and returns the results.

    Definition Classes
    EnumeratorModule
  55. final def iterateUntilM[E](init: E)(f: (E) ⇒ Future[Option[E]]): Enumerator[Future, E]

    An enumerator that iteratively performs an effectful operation until None is produced and returns the results.

    An enumerator that iteratively performs an effectful operation until None is produced and returns the results.

    Definition Classes
    EnumeratorModule
  56. final def length[E]: Iteratee[Future, E, Long]

    An Iteratee that counts the number of values in a stream.

    An Iteratee that counts the number of values in a stream.

    Definition Classes
    IterateeModule
  57. final def liftToEnumerator[E](fe: Future[E]): Enumerator[Future, E]

    Lift an effectful value into an enumerator.

    Lift an effectful value into an enumerator.

    Definition Classes
    EnumeratorModule
  58. final def liftToIteratee[E]: LiftToIterateePartiallyApplied[E]

    Lift an effectful value into an iteratee.

    Lift an effectful value into an iteratee.

    Definition Classes
    IterateeModule
  59. final def map[O, I](f: (O) ⇒ I): Enumeratee[Future, O, I]

    Map a function over a stream.

    Map a function over a stream.

    Definition Classes
    EnumerateeModule
  60. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  61. final def notify(): Unit

    Definition Classes
    AnyRef
  62. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  63. final def peek[E]: Iteratee[Future, E, Option[E]]

    An Iteratee that returns the first value in a stream without consuming it.

    An Iteratee that returns the first value in a stream without consuming it.

    Definition Classes
    IterateeModule
  64. final def perform[E]: PerformPartiallyApplied[E]

    An enumerator that forces the evaluation of an effect when it is consumed.

    An enumerator that forces the evaluation of an effect when it is consumed.

    Definition Classes
    EnumeratorModule
  65. final def repeat[E](e: E): Enumerator[Future, E]

    An enumerator that repeats the given value indefinitely.

    An enumerator that repeats the given value indefinitely.

    Definition Classes
    EnumeratorModule
  66. final def reversed[E]: Iteratee[Future, E, List[E]]

    An Iteratee that collects all inputs in reverse order.

    An Iteratee that collects all inputs in reverse order.

    Definition Classes
    IterateeModule
  67. final def sequenceI[O, I](iteratee: Iteratee[Future, O, I]): Enumeratee[Future, O, I]

    Apply the given Iteratee repeatedly.

    Apply the given Iteratee repeatedly.

    Definition Classes
    EnumerateeModule
  68. final def splitOn[E](p: (E) ⇒ Boolean): Enumeratee[Future, E, Vector[E]]

    Split the stream using the given predicate to identify delimiters.

    Split the stream using the given predicate to identify delimiters.

    Definition Classes
    EnumerateeModule
  69. final def sum[E](implicit E: Monoid[E]): Iteratee[Future, E, E]

    An Iteratee that combines values using an cats.Monoid instance.

    An Iteratee that combines values using an cats.Monoid instance.

    Definition Classes
    IterateeModule
  70. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  71. object syntax

  72. final def take[E](n: Long): Enumeratee[Future, E, E]

    An Enumeratee that takes a given number of the first values in a stream.

    An Enumeratee that takes a given number of the first values in a stream.

    Definition Classes
    EnumerateeModule
  73. final def takeI[E](n: Int): Iteratee[Future, E, Vector[E]]

    An Iteratee that returns a given number of the first values in a stream.

    An Iteratee that returns a given number of the first values in a stream.

    Definition Classes
    IterateeModule
  74. final def takeWhile[E](p: (E) ⇒ Boolean): Enumeratee[Future, E, E]

    An Enumeratee that takes values from a stream as long as they satisfy the given predicate.

    An Enumeratee that takes values from a stream as long as they satisfy the given predicate.

    Definition Classes
    EnumerateeModule
  75. final def takeWhileI[E](p: (E) ⇒ Boolean): Iteratee[Future, E, Vector[E]]

    An Iteratee that returns values from a stream as long as they satisfy the given predicate.

    An Iteratee that returns values from a stream as long as they satisfy the given predicate.

    Definition Classes
    IterateeModule
  76. final def takeWhileM[E](p: (E) ⇒ Future[Boolean]): Enumeratee[Future, E, E]

    An Enumeratee that takes values from a stream as long as they satisfy the given monadic predicate.

    An Enumeratee that takes values from a stream as long as they satisfy the given monadic predicate.

    Definition Classes
    EnumerateeModule
  77. def toString(): String

    Definition Classes
    AnyRef → Any
  78. final def uniq[E](implicit E: Eq[E]): Enumeratee[Future, E, E]

    Collapse consecutive duplicates.

    Collapse consecutive duplicates.

    Definition Classes
    EnumerateeModule
    Note

    Assumes that the stream is sorted.

  79. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  82. final def zipWithIndex[E]: Enumeratee[Future, E, (E, Long)]

    Zip with the number of elements that have been encountered.

    Zip with the number of elements that have been encountered.

    Definition Classes
    EnumerateeModule

Inherited from IterateeErrorModule[Future, Throwable]

Inherited from IterateeModule[Future]

Inherited from EnumeratorErrorModule[Future, Throwable]

Inherited from EnumeratorModule[Future]

Inherited from EnumerateeModule[Future]

Inherited from Module[Future]

Inherited from AnyRef

Inherited from Any

Constructors

Enumerators

Iteratees

Enumeratees

Extension methods

Helper classes

Ungrouped