Packages

  • package root

    edit this text on github Slick logo

    edit this text on github Slick logo

    Scala Language-Integrated Connection Kit

    This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.

    Further documentation for Slick can be found on the documentation pages.

    To the slick package list...

    Definition Classes
    root
  • package slick
    Definition Classes
    root
  • package memory

    Contains the abstract MemoryQueryingProfile and related code, as well as the concrete MemoryProfile and DistributedProfile implementations for in-memory interpretation of queries and scheduling of distributed queries (i.e.

    Contains the abstract MemoryQueryingProfile and related code, as well as the concrete MemoryProfile and DistributedProfile implementations for in-memory interpretation of queries and scheduling of distributed queries (i.e. combining several profiles and backends).

    Definition Classes
    slick
  • class DistributedProfile extends MemoryQueryingProfile

    A profile for distributed queries.

    A profile for distributed queries.

    Definition Classes
    memory
  • class Distribute extends Phase

    Compile sub-queries with the appropriate profile

    Compile sub-queries with the appropriate profile

    Definition Classes
    DistributedProfile
  • Scope
  • State

case class Scope(m: Map[TermSymbol, (Node, Scope)]) extends Product with Serializable

Source
DistributedProfile.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scope
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. 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 Scope(m: Map[TermSymbol, (Node, Scope)])

Value Members

  1. def +(s: TermSymbol, n: Node): Scope
  2. def get(s: TermSymbol): Option[(Node, Scope)]
  3. val m: Map[TermSymbol, (Node, Scope)]
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product