Packages

t

slick.lifted

RunnableCompiled

trait RunnableCompiled[R, RU] extends Compiled[R]

A compiled value that can be executed to obtain its result.

Source
Compiled.scala
Linear Supertypes
Compiled[R], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RunnableCompiled
  2. Compiled
  3. AnyRef
  4. 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
  2. abstract def compiledInsert: Any
  3. abstract def compiledQuery: Node
  4. abstract def compiledUpdate: Node
  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
  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

Deprecated Value Members

  1. final def driver: BasicProfile
    Definition Classes
    Compiled
    Annotations
    @deprecated
    Deprecated

    (Since version 3.2) Use profile instead of driver