Initialize() public method

public Initialize ( ) : void
return void
 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();
 }
 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();
 }