public CircuitBreakerStoragePartition(string key)
 {
     this.key        = key;
     subscribers     = new ConcurrentSet <CircuitBreakerBrokerSubscriber>();
     stateDescriptor = new CircuitBreakerStateDescriptor(CircuitBreakerState.Closed, Clock.Current.Now(), TimeSpan.FromMinutes(2));
 }