Packages

object ProjectionId

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

Value Members

  1. def apply(name: String, keys: Set[String]): Set[ProjectionId]

    Constructs a Set of ProjectionId.

    Constructs a Set of ProjectionId.

    A ProjectionId is composed by a name and a key.

    The projection name is shared across multiple instances of Projection with different keys. For example, a "user-view" could be the name of a projection.

    The key must be unique for a projection name. For example, a "user-view" could have multiple projections with different keys representing different partitions, shards, etc.

    name

    - the projection name

    keys

    - the Set of keys to associated with the passed name.

    returns

    an immutable.Set of ProjectionIds

  2. def apply(name: String, key: String): ProjectionId

    Constructs a ProjectionId.

    Constructs a ProjectionId.

    A ProjectionId is composed by a name and a key.

    The projection name is shared across multiple instances of Projection with different keys. For example, a "user-view" could be the name of a projection.

    The key must be unique for a projection name. For example, a "user-view" could have multiple projections with different keys representing different partitions, shards, etc.

    name

    - the projection name

    key

    - the unique key. The key must be unique for a projection name.

    returns

    ProjectionId

  3. def of(name: String, keys: Set[String]): Set[ProjectionId]

    Java API: Constructs a Set of ProjectionId.

    Java API: Constructs a Set of ProjectionId.

    A ProjectionId is composed by a name and a key.

    The projection name is shared across multiple instances of Projection with different keys. For example, a "user-view" could be the name of a projection.

    The key must be unique for a projection name. For example, a "user-view" could have multiple projections with different keys representing different partitions, shards, etc.

    name

    - the projection name

    keys

    - the Set of keys to associated with the passed name.

    returns

    an java.util.Set of ProjectionIds

  4. def of(name: String, key: String): ProjectionId

    Java API: Constructs a ProjectionId.

    Java API: Constructs a ProjectionId.

    A ProjectionId is composed by a name and a key.

    The projection name is shared across multiple instances of Projection with different keys. For example, a "user-view" could be the name of a projection.

    The key must be unique for a projection name. For example, a "user-view" could have multiple projections with different keys representing different partitions, shards, etc.

    name

    - the projection name

    key

    - the unique key. The key must be unique for a projection name.

    returns

    a ProjectionId