Package

longevity

context

Permalink

package context

contains the LongevityContext plus supporting types and classes

Source
package.scala
Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. context
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Cassandra extends PersistenceStrategy

    Permalink

    entities live in Cassandra

  2. sealed trait InMem extends PersistenceStrategy

    Permalink

    entities live in-memory.

    entities live in-memory. when the application exits, they are gone.

  3. trait LongevityContext extends PersistenceContext with TestContext

    Permalink

    the longevity managed portion of the bounded context for your subdomain.

    the longevity managed portion of the bounded context for your subdomain. the bounded context is a capture of the strategies and tools used by the applications relating to your subdomain. in other words, those tools that speak the language of the subdomain.

  4. sealed trait Mongo extends PersistenceStrategy

    Permalink

    entities live in MongoDB

  5. trait PersistenceContext extends AnyRef

    Permalink

    the portion of a LongevityContext that deals with persistence

  6. sealed trait PersistenceStrategy extends AnyRef

    Permalink

    the persistence strategy used by a longevity context.

    the persistence strategy used by a longevity context. right now, you have three options:

    please note that the persistence strategy selected for your longevity context can be overridden in a test environment, so that you can use an in-memory database for integration testing.

  7. trait TestContext extends AnyRef

    Permalink

    the portion of a LongevityContext that deals with testing

Value Members

  1. object Cassandra extends Cassandra with Product with Serializable

    Permalink
  2. object InMem extends InMem with Product with Serializable

    Permalink
  3. object LongevityContext

    Permalink
  4. object Mongo extends Mongo with Product with Serializable

    Permalink
  5. object TestContext

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped