protected ulong getNextSequenceValue(string key, int increment, int tryCount)
 {
     return(IStoreProviderInternalHelpers.GetNextSequenceValueViaCASWithRetries(this, key, increment, tryCount));
 }
 public ulong GetNextSequenceValue(string key, int increment)
 {
     return(IStoreProviderInternalHelpers.GetNextSequenceValueViaCAS(this, key, increment));
 }
 public ulong GetNextSequenceValue(string key, int increment)
 {
     key = KeyCharSubstitutor.Convert(key);
     return(IStoreProviderInternalHelpers.GetNextSequenceValueViaCAS(this, key, increment));
 }