Example #1
0
 public ClusterStateManager(
     LocalLocationStoreConfiguration configuration,
     IClusterStateStorage storage,
     IClock?clock = null)
 {
     _configuration = configuration;
     _storage       = storage;
     _clock         = clock ?? SystemClock.Instance;
 }
Example #2
0
 public TransitionalClusterStateStorage(IClusterStateStorage primary, ISecondaryClusterStateStorage secondary)
 {
     _primary   = primary;
     _secondary = secondary;
 }