C# Class Akka.Persistence.Journal.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.
Afficher le fichier Open project: rogeralsing/akka.net

Méthodes publiques

Свойство Type Description
Payload object
Tags IImmutableSet

Méthodes publiques

Méthode Description
Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic

Method Details

Tagged() public méthode

public Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
payload object
tags IEnumerable
Résultat System.Collections.Generic

Tagged() public méthode

public Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic
payload object
tags IImmutableSet
Résultat System.Collections.Generic

Property Details

Payload public_oe property

public object Payload
Résultat object

Tags public_oe property

public IImmutableSet Tags
Résultat IImmutableSet