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.
파일 보기 프로젝트 열기: rogeralsing/akka.net

공개 프로퍼티들

프로퍼티 타입 설명
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