Table of Contents

Interface IHistoryEventPublisher<TEvent>

Namespace
LfrlAnvil.Reactive
Assembly
LfrlAnvil.Reactive.Core.dll

Represents a generic disposable event source that can be listened to, capable of recording previously published events.

public interface IHistoryEventPublisher<TEvent> : IEventPublisher<TEvent>, IEventSource<TEvent>, IEventStream<TEvent>, IEventPublisher, IEventSource, IEventStream, IDisposable

Type Parameters

TEvent

Event type.

Inherited Members
Extension Methods

Properties

Capacity

Specifies the maximum number of events this event publisher can record.

int Capacity { get; }

Property Value

int

History

Collection of recorded previously published events.

IReadOnlyCollection<TEvent> History { get; }

Property Value

IReadOnlyCollection<TEvent>

Methods

ClearHistory()

Removes all recorded events.

void ClearHistory()