Packages

t

slick.lifted

StreamableCompiled

trait StreamableCompiled[R, RU, EU] extends RunnableCompiled[R, RU]

A compiled value that can be executed to obtain its result as a stream of data.

Source
Compiled.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StreamableCompiled
  2. RunnableCompiled
  3. Compiled
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def compiledDelete: Node
    Definition Classes
    RunnableCompiled
  2. abstract def compiledInsert: Any
    Definition Classes
    RunnableCompiled
  3. abstract def compiledQuery: Node
    Definition Classes
    RunnableCompiled
  4. abstract def compiledUpdate: Node
    Definition Classes
    RunnableCompiled
  5. abstract def extract: R

    Return the underlying query or query function.

    Return the underlying query or query function. It can be safely extracted for reuse without caching the compiled representation.

    Definition Classes
    Compiled
  6. abstract def param: Any
    Definition Classes
    RunnableCompiled
  7. abstract def profile: BasicProfile

    The profile which is used for compiling the query.

    The profile which is used for compiling the query.

    Definition Classes
    Compiled

Concrete Value Members

  1. def flatMap[U <: Compiled[_]](f: (R) => U): U

    Perform a transformation of the underlying value.

    Perform a transformation of the underlying value. The computed Compiled value is returned unmodified.

    Definition Classes
    Compiled
  2. def map[U, C <: Compiled[U]](f: (R) => U)(implicit uCompilable: Compilable[U, C]): C

    Perform a transformation of the underlying value.

    Perform a transformation of the underlying value. The computed value must be Compilable. The resulting Compiled instance will be recompiled when needed. It does not benefit from this instance already containing the compiled state.

    Definition Classes
    Compiled