StreamableCompiled

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.

Attributes

Source:
Compiled.scala
Graph
Supertypes
trait RunnableCompiled[R, RU]
trait Compiled[R]
class Object
trait Matchable
class Any
Known subtypes

Members list

Concise view

Value members

Inherited methods

Attributes

Inherited from:
RunnableCompiled
Source:
Compiled.scala

Attributes

Inherited from:
RunnableCompiled
Source:
Compiled.scala

Attributes

Inherited from:
RunnableCompiled
Source:
Compiled.scala

Attributes

Inherited from:
RunnableCompiled
Source:
Compiled.scala
def extract: T

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

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

Attributes

Inherited from:
Compiled
Source:
Compiled.scala
def flatMap[U <: Compiled[_]](f: R => U): U

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

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

Attributes

Inherited from:
Compiled
Source:
Compiled.scala
def map[U, C <: Compiled[U]](f: R => U)(implicit uCompilable: Compilable[U, C]): C

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.

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.

Attributes

Inherited from:
Compiled
Source:
Compiled.scala
def param: Any

Attributes

Inherited from:
RunnableCompiled
Source:
Compiled.scala

The profile which is used for compiling the query.

The profile which is used for compiling the query.

Attributes

Inherited from:
Compiled
Source:
Compiled.scala