MessageReceiver.OnBeginComplete Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OnBeginComplete(TrackingContext, IEnumerable<Guid>, Boolean, TimeSpan, AsyncCallback, Object) |
Executes upon calling the OnComplete or BeginComplete operation. |
OnBeginComplete(TrackingContext, IEnumerable<ArraySegment<Byte>>, Boolean, TimeSpan, AsyncCallback, Object) |
Executes upon calling the OnComplete or BeginComplete operation. |
OnBeginComplete(TrackingContext, IEnumerable<Guid>, Boolean, TimeSpan, AsyncCallback, Object)
Executes upon calling the OnComplete or BeginComplete operation.
protected abstract IAsyncResult OnBeginComplete (Microsoft.ServiceBus.Tracing.TrackingContext trackingContext, System.Collections.Generic.IEnumerable<Guid> lockTokens, bool fromSync, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginComplete : Microsoft.ServiceBus.Tracing.TrackingContext * seq<Guid> * bool * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginComplete (trackingContext As TrackingContext, lockTokens As IEnumerable(Of Guid), fromSync As Boolean, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- trackingContext
- TrackingContext
The context information associated by a transaction tracking this operation.
- lockTokens
- IEnumerable<Guid>
The collection of lock tokens bound to the locked message instances.
- fromSync
- Boolean
The start of the synchronization.
- timeout
- TimeSpan
The time span the operation waits before it times out.
- callback
- AsyncCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- state
- Object
A user-defined object that contains state information about the asynchronous operation.
Returns
AnIAsyncResult that references the asynchronous operation to complete receiving of messages.
Applies to
OnBeginComplete(TrackingContext, IEnumerable<ArraySegment<Byte>>, Boolean, TimeSpan, AsyncCallback, Object)
Executes upon calling the OnComplete or BeginComplete operation.
protected abstract IAsyncResult OnBeginComplete (Microsoft.ServiceBus.Tracing.TrackingContext trackingContext, System.Collections.Generic.IEnumerable<ArraySegment<byte>> deliveryTags, bool fromSync, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginComplete : Microsoft.ServiceBus.Tracing.TrackingContext * seq<ArraySegment<byte>> * bool * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginComplete (trackingContext As TrackingContext, deliveryTags As IEnumerable(Of ArraySegment(Of Byte)), fromSync As Boolean, timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- trackingContext
- TrackingContext
The context information associated by a transaction tracking this operation.
- deliveryTags
- IEnumerable<ArraySegment<Byte>>
A collection of delivery tags.
- fromSync
- Boolean
The start of the synchronization.
- timeout
- TimeSpan
The time span the operation waits before it times out.
- callback
- AsyncCallback
An AsyncCallback delegate that references the method to invoke when the operation is complete.
- state
- Object
A user-defined object that contains state information about the asynchronous operation.
Returns
AnIAsyncResult that references the asynchronous operation to complete receiving of messages.
Applies to
Azure SDK for .NET