This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static long GetUniqueId() | |
{ | |
if (_instance != null) | |
{ | |
return _instance.NextId("importID"); | |
} | |
var storageAccount = CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString")); | |
IOptimisticDataStore blobDataStore = new BlobOptimisticDataStore(storageAccount, AzureCloudStorageServices.GetStorageContainerName()); | |
_instance = new UniqueIdGenerator(blobDataStore); | |
return _instance.NextId("importID"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static long GetUniqueId() | |
{ | |
if (_instance != null) | |
{ | |
return _instance.NextId("importID"); | |
} | |
var storageAccount = | |
CloudStorageAccount.Parse(CloudConfigurationManager.GetSetting("StorageConnectionString")); | |
IOptimisticDataStore blobDataStore = new BlobOptimisticDataStore(storageAccount, AzureCloudStorageServices.GetStorageContainerName()); | |
_instance = new UniqueIdGenerator(blobDataStore); |