MessageReceiver.OnBeginRenewMessageLocks Method

Executes upon calling the OnBegin operation for lock messages.

Namespace:  Microsoft.ServiceBus.Messaging
Assembly:  Microsoft.ServiceBus (in Microsoft.ServiceBus.dll)

Syntax

'Declaration
Protected MustOverride Function OnBeginRenewMessageLocks ( _
    trackingContext As TrackingContext, _
    lockTokens As IEnumerable(Of Guid), _
    timeout As TimeSpan, _
    callback As AsyncCallback, _
    state As Object _
) As IAsyncResult
'Usage
Dim trackingContext As TrackingContext
Dim lockTokens As IEnumerable(Of Guid)
Dim timeout As TimeSpan
Dim callback As AsyncCallback
Dim state As Object
Dim returnValue As IAsyncResult

returnValue = Me.OnBeginRenewMessageLocks(trackingContext, _
    lockTokens, timeout, callback, state)
protected abstract IAsyncResult OnBeginRenewMessageLocks(
    TrackingContext trackingContext,
    IEnumerable<Guid> lockTokens,
    TimeSpan timeout,
    AsyncCallback callback,
    Object state
)
protected:
virtual IAsyncResult^ OnBeginRenewMessageLocks(
    TrackingContext^ trackingContext, 
    IEnumerable<Guid>^ lockTokens, 
    TimeSpan timeout, 
    AsyncCallback^ callback, 
    Object^ state
) abstract
abstract OnBeginRenewMessageLocks : 
        trackingContext:TrackingContext * 
        lockTokens:IEnumerable<Guid> * 
        timeout:TimeSpan * 
        callback:AsyncCallback * 
        state:Object -> IAsyncResult 
protected abstract function OnBeginRenewMessageLocks(
    trackingContext : TrackingContext, 
    lockTokens : IEnumerable<Guid>, 
    timeout : TimeSpan, 
    callback : AsyncCallback, 
    state : Object
) : IAsyncResult

Parameters

  • timeout
    Type: System.TimeSpan
    The time span the operation waits before it times out.
  • state
    Type: System.Object
    A user-defined object that contains state information about the asynchronous operation.

Return Value

Type: System.IAsyncResult
An IAsyncResult that references the asynchronous operation to renew processing of lock messages.

See Also

Reference

MessageReceiver Class

Microsoft.ServiceBus.Messaging Namespace