C# Класс 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.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Payload object
Tags IImmutableSet

Открытые методы

Метод Описание
Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic

Описание методов

Tagged() публичный Метод

public Tagged ( object payload, IEnumerable tags ) : System.Collections.Generic
payload object
tags IEnumerable
Результат System.Collections.Generic

Tagged() публичный Метод

public Tagged ( object payload, IImmutableSet tags ) : System.Collections.Generic
payload object
tags IImmutableSet
Результат System.Collections.Generic

Описание свойств

Payload публичное свойство

public object Payload
Результат object

Tags публичное свойство

public IImmutableSet Tags
Результат IImmutableSet