Struct Tagged
The journal may support tagging of events that are used by the
EventsByTag
query and it may support specifying the tags via an
IEventAdapter that wraps the events
in a Tagged with the given Tags. The journal may support other
ways of doing tagging. Please consult the documentation of the specific
journal implementation for more information.
The journal will unwrap the event and store the Payload.
Inherited Members
Namespace: Akka.Persistence.Journal
Assembly: Akka.Persistence.dll
Syntax
public struct Tagged
Constructors
| Improve this Doc View SourceTagged(Object, IEnumerable<String>)
TBD
Declaration
public Tagged(object payload, IEnumerable<string> tags)
Parameters
Type | Name | Description |
---|---|---|
Object | payload | TBD |
IEnumerable<String> | tags | TBD |
Tagged(Object, IImmutableSet<String>)
TBD
Declaration
public Tagged(object payload, IImmutableSet<string> tags)
Parameters
Type | Name | Description |
---|---|---|
Object | payload | TBD |
System.Collections.Immutable.IImmutableSet<String> | tags | TBD |
Properties
| Improve this Doc View SourcePayload
TBD
Declaration
public readonly object Payload { get; }
Property Value
Type | Description |
---|---|
Object |
Tags
TBD
Declaration
public readonly IImmutableSet<string> Tags { get; }
Property Value
Type | Description |
---|---|
System.Collections.Immutable.IImmutableSet<String> |