Line data Source code
1 : using System.Collections.Generic;
2 : using Cqrs.Domain;
3 : using Cqrs.Events;
4 :
5 : namespace Cqrs.Akka.Domain
6 : {
7 : public interface IAkkaAggregateRepository<TAuthenticationToken> : IAggregateRepository<TAuthenticationToken>
8 : {
9 0 : void LoadAggregateHistory<TAggregateRoot>(TAggregateRoot aggregate, IList<IEvent<TAuthenticationToken>> events = null, bool throwExceptionOnNoEvents = true)
10 : where TAggregateRoot : IAggregateRoot<TAuthenticationToken>;
11 : }
12 : }
|