Show / Hide Table of Contents

Enum OffsetType

The types of offsets that can be configured in the InitialOffsetOptions.

Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.WebJobs.Extensions.EventHubs.dll
Syntax
public enum OffsetType

FromEnd

Will start processing events from the end of the stream. Use this option if you only want to process events that are added after the function starts.

FromEnqueuedTime

Will process events that were enqueued by Event Hubs on or after the specified time. Note that this applies to all Event Hubs partitions and there is no support for specifying a per-partition value.

FromStart

The default option if not specified. Will start processing from the start of the stream.

Back to top Azure SDK for .NET