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

AggregateRootCreationParameters() public method

public AggregateRootCreationParameters ( System.Guid id, IActorRef projections, int snapshotThreshold = 250 ) : System
id System.Guid
projections IActorRef
snapshotThreshold int
return System
        public AggregateRootCreationParameters(Guid id, IActorRef projections, int snapshotThreshold = 250)
        {
            Id = id;
            Projections = projections;
            SnapshotThreshold = snapshotThreshold;
        }
        //public AggregateRootCreationParameters(IActorRef projections, int snapshotThreshold = 250)
AggregateRootCreationParameters