Akka.Interfaced.Persistence.Tests.TestPersistentActor.TestPersistentActor C# (CSharp) Метод

TestPersistentActor() публичный Метод

public TestPersistentActor ( ITestOutputHelper output ) : System
output ITestOutputHelper
Результат System
        public TestPersistentActor(ITestOutputHelper output)
            : base(ConfigurationFactory.ParseString(
                    @"akka.persistence.journal.plugin = ""akka.persistence.journal.inmem""
                      akka.persistence.snapshot-store.plugin = ""akka.persistence.snapshot-store.local""
                      akka.persistence.snapshot-store.local.dir = ""temp_snapshots/""")
                    .WithFallback(Akka.Persistence.Persistence.DefaultConfig()),
                   output: output)
        {
            Clean = new CleanupLocalSnapshots(this);
            Clean.Initialize();
        }