本文整理汇总了C#中Microsoft.WindowsAzure.StorageClient.CloudBlob.RenewLease方法的典型用法代码示例。如果您正苦于以下问题:C# CloudBlob.RenewLease方法的具体用法?C# CloudBlob.RenewLease怎么用?C# CloudBlob.RenewLease使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.WindowsAzure.StorageClient.CloudBlob
的用法示例。
在下文中一共展示了CloudBlob.RenewLease方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AutoRenewLease
public AutoRenewLease(CloudBlob blob)
{
this.blob = blob;
blob.Container.CreateIfNotExist();
try
{
blob.UploadByteArray(new byte[0], new BlobRequestOptions { AccessCondition = AccessCondition.IfNoneMatch("*") });
}
catch (StorageClientException e)
{
if (e.ErrorCode != StorageErrorCode.BlobAlreadyExists
&& e.StatusCode != HttpStatusCode.PreconditionFailed) // 412 from trying to modify a blob that's leased
{
throw;
}
}
leaseId = blob.TryAcquireLease();
if (HasLease)
{
renewalThread = new Thread(() =>
{
Thread.Sleep(TimeSpan.FromSeconds(40));
blob.RenewLease(leaseId);
});
renewalThread.Start();
}
}
示例2: AutoRenewLease
public AutoRenewLease(ILoggerFactory loggerFactory, LoggerLevel logLevel, CloudBlob blob, int renewLeaseSeconds = 40, int leaseLengthSeconds = 90)
{
_logger = loggerFactory.Create(GetType(), logLevel);
var autoRenewLease = this;
_blob = blob;
blob.Container.CreateIfNotExist();
try
{
blob.UploadByteArray(new byte[0], new BlobRequestOptions { AccessCondition = AccessCondition.IfNoneMatch("*")});
}
catch (StorageClientException ex)
{
if (ex.ErrorCode != StorageErrorCode.BlobAlreadyExists)
{
if (ex.StatusCode != HttpStatusCode.PreconditionFailed)
throw;
}
}
LeaseId = blob.TryAcquireLease(leaseLengthSeconds);
if (!HasLease)
return;
_cancellationTokenSource = new CancellationTokenSource();
_resetEvent = new ManualResetEvent(false);
Task.Factory.StartNew(() =>
{
try
{
while (true)
{
_resetEvent.WaitOne(TimeSpan.FromSeconds(renewLeaseSeconds));
if (_cancellationTokenSource.IsCancellationRequested)
break;
blob.RenewLease(autoRenewLease.LeaseId);
}
}
catch (Exception e)
{
LeaseId = null; // Release the lease
_logger.Error("Error renewing blob lease", e);
}
}, _cancellationTokenSource.Token);
}
示例3: AutoRenewLease
private static void AutoRenewLease(CloudBlob blob, string leaseId, int maximumStopDurationEstimateSeconds, CancellationToken cancellationToken)
{
try
{
const int sleepSeconds = 10;
var totalSleepSeconds = 0;
while (true)
{
for (var i = 0; i < sleepSeconds; i++ )
{
Thread.Sleep(TimeSpan.FromSeconds(1));
if (cancellationToken.IsCancellationRequested)
break;
}
totalSleepSeconds += sleepSeconds;
if (totalSleepSeconds >= maximumStopDurationEstimateSeconds)
break;
blob.RenewLease(AccessCondition.GenerateLeaseCondition(leaseId), leaseRequestTimeout);
}
}
catch
{
}
finally
{
try
{
BreakLease(blob);
}
catch
{
}
}
}