你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EventHubBufferedProducerClient.OnSendFailedAsync 方法

定义

负责在一批事件发布失败时引发 SendEventBatchFailedAsync 事件,在所有符合条件的重试都用完后引发事件。

protected virtual System.Threading.Tasks.Task OnSendFailedAsync (System.Collections.Generic.IReadOnlyList<Azure.Messaging.EventHubs.EventData> events, Exception exception, string partitionId, System.Threading.CancellationToken cancellationToken = default);
abstract member OnSendFailedAsync : System.Collections.Generic.IReadOnlyList<Azure.Messaging.EventHubs.EventData> * Exception * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.OnSendFailedAsync : System.Collections.Generic.IReadOnlyList<Azure.Messaging.EventHubs.EventData> * Exception * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Protected Overridable Function OnSendFailedAsync (events As IReadOnlyList(Of EventData), exception As Exception, partitionId As String, Optional cancellationToken As CancellationToken = Nothing) As Task

参数

events
IReadOnlyList<EventData>

属于未能发布的批处理的事件集。

exception
Exception

事件 Exception 发布失败时引发的 。

partitionId
String

将事件批处理发布到的分区的标识符。

cancellationToken
CancellationToken

一个 CancellationToken 实例,用于向请求发出取消发布信号。

返回

适用于