object ProjectionId
- Source
- ProjectionId.scala
- Alphabetic
- By Inheritance
- ProjectionId
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- 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
- 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
- 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
- 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