slick.util

iter

package iter

Content Hierarchy Learn more about scaladoc diagrams
Visibility
  1. Public
  2. All

Type Members

  1. case class Cont[E, +A](k: (Input[E]) ⇒ IterV[E, A]) extends IterV[E, A] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  2. case class Done[E, +A](a: A, e: Input[E] = Empty) extends IterV[E, A] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  3. case class El[+E](e: E) extends Input[E] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  4. sealed trait Input[+E] extends AnyRef

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  5. sealed trait IterV[E, +A] extends AnyRef

    An iteratee for DB results.

Deprecated Value Members

  1. object Cont extends Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  2. object EOF extends Input[Nothing] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

  3. object Empty extends Input[Nothing] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 3.0) Use Reactive Streams in the new Action-based API instead of Slick iteratees

Ungrouped