Packages

object query

Module defining queries parameterized by input and output types.

Source
query.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. query
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Query[A, B] extends AnyRef

    A query parameterized by some input type A yielding values of type B.

    A query parameterized by some input type A yielding values of type B. We define here the core operations that are needed. Additional operations are provided on Query0 which is the residual query after applying an A. This is the type constructed by the sql interpolator.

  2. trait Query0[B] extends AnyRef

    An abstract query closed over its input arguments and yielding values of type B, without a specified disposition.

    An abstract query closed over its input arguments and yielding values of type B, without a specified disposition. Methods provided on Query0 allow the query to be interpreted as a stream or program in CollectionIO.

Value Members

  1. val DefaultChunkSize: Int
  2. object Query
  3. object Query0