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.
Datei anzeigen Open project: rogeralsing/akka.net

Public Properties

Property Type Description
Payload object
Tags IImmutableSet

Public Methods

Method Description
Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic

Method Details

Tagged() public method

public Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
payload object
tags IEnumerable
return System.Collections.Generic

Tagged() public method

public Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic
payload object
tags IImmutableSet
return System.Collections.Generic

Property Details

Payload public_oe property

public object Payload
return object

Tags public_oe property

public IImmutableSet Tags
return IImmutableSet