你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Container.ChangeFeedStreamHandlerWithManualCheckpoint 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
委托以使用手动检查点接收执行中的 ChangeFeedProcessor 更改。
public delegate System.Threading.Tasks.Task Container.ChangeFeedStreamHandlerWithManualCheckpoint(ChangeFeedProcessorContext context, Stream changes, Func<Task> checkpointAsync, CancellationToken cancellationToken);
type Container.ChangeFeedStreamHandlerWithManualCheckpoint = delegate of ChangeFeedProcessorContext * Stream * Func<Task> * CancellationToken -> Task
Public Delegate Function Container.ChangeFeedStreamHandlerWithManualCheckpoint(context As ChangeFeedProcessorContext, changes As Stream, checkpointAsync As Func(Of Task), cancellationToken As CancellationToken) As Task
参数
- context
- ChangeFeedProcessorContext
与更改相关的上下文。
- changes
- Stream
发生的更改。
- cancellationToken
- CancellationToken
表示实例的当前取消状态的 ChangeFeedProcessor 取消标记。
返回值
一个 Task ,表示将完成更改的异步操作。
示例
(ChangeFeedProcessorContext context, Stream stream, Func<Task> checkpointAsync, CancellationToken cancellationToken) =>
{
// consume stream
// On certain condition, we can checkpoint
await checkpointAsync();
}