LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
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 IAkkaSagaRepository<TAuthenticationToken> : ISagaRepository<TAuthenticationToken> 8 : { 9 0 : void LoadSagaHistory<TSaga>(TSaga saga, IList<ISagaEvent<TAuthenticationToken>> events = null, bool throwExceptionOnNoEvents = true) 10 : where TSaga : ISaga<TAuthenticationToken>; 11 : } 12 : } |
Generated by: LCOV version 1.10 |