Class TagMigrationResult
Result of an AddTagsAsync(string, Func<SequencedEvent, IReadOnlyList<Tag>>, CancellationToken) operation.
public record TagMigrationResult : IEquatable<TagMigrationResult>
- Inheritance
-
TagMigrationResult
- Implements
- Inherited Members
Constructors
TagMigrationResult(int, int)
Result of an AddTagsAsync(string, Func<SequencedEvent, IReadOnlyList<Tag>>, CancellationToken) operation.
public TagMigrationResult(int TagsAdded, int EventsProcessed)
Parameters
TagsAddedintTotal number of individual tag entries written to the store and its indices.
EventsProcessedintNumber of events of the requested type that were examined.
Properties
EventsProcessed
Number of events of the requested type that were examined.
public int EventsProcessed { get; init; }
Property Value
TagsAdded
Total number of individual tag entries written to the store and its indices.
public int TagsAdded { get; init; }