Class InitialOffsetOptions
Configuration options to control the initial offset to use when processing an Event Hub. These options only apply when no checkpoint information is available.
Inheritance
System.Object
InitialOffsetOptions
Namespace: System.Dynamic.ExpandoObject
Assembly: Microsoft.Azure.WebJobs.Extensions.EventHubs.dll
Syntax
public class InitialOffsetOptions
Constructors
InitialOffsetOptions()
Declaration
public InitialOffsetOptions ();
Properties
EnqueuedTimeUtc
Gets or sets the time that events should be processed after. Any parsable format is accepted. Only applies when the Type is FromEnqueuedTime.
Declaration
public Nullable<DateTimeOffset> EnqueuedTimeUtc { get; set; }
Property Value
System.Nullable<System.DateTimeOffset>
|
Type
Gets or sets the type of the initial offset.
Declaration
public Nullable<Microsoft.Azure.WebJobs.EventHubs.OffsetType> Type { get; set; }
Property Value
System.Nullable<OffsetType>
|