本文整理汇总了C#中BrokeredMessage.RenewLock方法的典型用法代码示例。如果您正苦于以下问题:C# BrokeredMessage.RenewLock方法的具体用法?C# BrokeredMessage.RenewLock怎么用?C# BrokeredMessage.RenewLock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BrokeredMessage
的用法示例。
在下文中一共展示了BrokeredMessage.RenewLock方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RenewLockIfNeeded
static bool RenewLockIfNeeded(BrokeredMessage brokeredMessage)
{
try
{
if (brokeredMessage.LockedUntilUtc <= DateTime.UtcNow) return false;
if (brokeredMessage.LockedUntilUtc <= DateTime.UtcNow.AddSeconds(10))
{
try
{
brokeredMessage.RenewLock();
}
catch (MessageLockLostException)
{
return false;
}
catch (SessionLockLostException)
{
return false;
}
catch (TimeoutException)
{
return false;
}
}
}
catch (InvalidOperationException)
{
// if the message was received without a peeklock mechanism you're not allowed to call LockedUntilUtc
// sadly enough I can't find a public property that checks who the receiver was or if the locktoken has been set
// those are internal to the sdk
}
return true;
}
示例2: RenewLockIfNeeded
static bool RenewLockIfNeeded(BrokeredMessage brokeredMessage)
{
if (brokeredMessage.LockedUntilUtc <= DateTime.UtcNow) return false;
if (brokeredMessage.LockedUntilUtc <= DateTime.UtcNow.AddSeconds(10))
{
try
{
brokeredMessage.RenewLock();
}
catch (Exception)
{
return false;
}
}
return true;
}
开发者ID:modulexcite,项目名称:NServiceBus.WindowsServiceBus,代码行数:17,代码来源:WindowsServiceBusDequeueStrategy.cs