Interface IHistoryEventPublisher<TEvent>
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
History
Collection of recorded previously published events.
IReadOnlyCollection<TEvent> History { get; }
Property Value
- IReadOnlyCollection<TEvent>
Methods
ClearHistory()
Removes all recorded events.
void ClearHistory()