Akka.EventStore.Cqrs.Core.AggregateRootActor.AggregateRootActor C# (CSharp) Method

AggregateRootActor() protected method

protected AggregateRootActor ( IAggregateRootCreationParameters parameters ) : System
parameters IAggregateRootCreationParameters
return System
        protected AggregateRootActor(IAggregateRootCreationParameters parameters)
        {
            _id = parameters.Id;
            _projections = parameters.Projections;
            _snapshotThreshold = parameters.SnapshotThreshold;

            _exceptions = new List<Exception>();
            _log = Context.GetLogger();
        }