C# 클래스 EventSourcingCqrsSample.EventProcessors.EventProcessor

This represents the processor entity for events.
상속: IEventProcessor
파일 보기 프로젝트 열기: devkimchi/EventSourcing-CQRS-Sample

공개 메소드들

메소드 설명
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

EventProcessor ( IUnitOfWorkManager uowm ) : System

Initializes a new instance of the EventProcessor class.

ProcessEventsAsync ( IEnumerable evs ) : Task

Processes the list of events asynchronously.

비공개 메소드들

메소드 설명
GetHandlers ( BaseEvent ev ) : IEnumerable

메소드 상세

Dispose() 공개 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
리턴 void

EventProcessor() 공개 메소드

Initializes a new instance of the EventProcessor class.
public EventProcessor ( IUnitOfWorkManager uowm ) : System
uowm IUnitOfWorkManager instance.
리턴 System

ProcessEventsAsync() 공개 메소드

Processes the list of events asynchronously.
public ProcessEventsAsync ( IEnumerable evs ) : Task
evs IEnumerable List of events.
리턴 Task