Packages

c

slick.lifted

CompiledStreamingExecutable

abstract class CompiledStreamingExecutable[R, RU, EU] extends CompiledExecutable[R, RU] with StreamableCompiled[R, RU, EU]

Source
Compiled.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompiledStreamingExecutable
  2. StreamableCompiled
  3. CompiledExecutable
  4. CompilersMixin
  5. RunnableCompiled
  6. Compiled
  7. AnyRef
  8. 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

Instance Constructors

  1. new CompiledStreamingExecutable(extract: R, profile: BasicProfile)

Abstract Value Members

  1. abstract def toNode: Node
    Definition Classes
    CompiledExecutableCompilersMixin

Concrete Value Members

  1. lazy val compiledDelete: Node
    Definition Classes
    CompilersMixin
  2. lazy val compiledInsert: CompiledInsert
    Definition Classes
    CompilersMixin
  3. lazy val compiledQuery: Node
    Definition Classes
    CompilersMixin
  4. lazy val compiledUpdate: Node
    Definition Classes
    CompilersMixin
  5. val 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
    CompiledExecutableCompiled
  6. 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
  7. 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
  8. def param: Unit
    Definition Classes
    CompiledExecutableRunnableCompiled
  9. val profile: BasicProfile

    The profile which is used for compiling the query.

    The profile which is used for compiling the query.

    Definition Classes
    CompiledExecutableCompiled