MessageSender.OnBeginScheduleMessage 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.
This allows concrete implementations to override (if needed) what should be done to schedule sends
protected abstract IAsyncResult OnBeginScheduleMessage (Microsoft.ServiceBus.Tracing.TrackingContext trackingContext, System.Collections.Generic.IEnumerable<Microsoft.ServiceBus.Messaging.BrokeredMessage> messages, TimeSpan timeout, AsyncCallback callback, object state);
abstract member OnBeginScheduleMessage : Microsoft.ServiceBus.Tracing.TrackingContext * seq<Microsoft.ServiceBus.Messaging.BrokeredMessage> * TimeSpan * AsyncCallback * obj -> IAsyncResult
Protected MustOverride Function OnBeginScheduleMessage (trackingContext As TrackingContext, messages As IEnumerable(Of BrokeredMessage), timeout As TimeSpan, callback As AsyncCallback, state As Object) As IAsyncResult
Parameters
- trackingContext
- TrackingContext
Tracking context to use.
- messages
- IEnumerable<BrokeredMessage>
Messages to be scheduled.
- timeout
- TimeSpan
A client side timeout value for the operation. The operation should be aborted or cancel if the duration exceeded this timeout.
- callback
- AsyncCallback
A user callback to be invoked when the operation completes.
- state
- Object
The state to be passed to the callback when the operation completes.
Returns
a IAsyncResult for the operation.
Applies to
Azure SDK for .NET