Szerkesztés

Megosztás a következőn keresztül:


EventHubSequenceTokenV2 Constructors

Definition

Overloads

EventHubSequenceTokenV2()

Initializes a new instance of the EventHubSequenceTokenV2 class.

EventHubSequenceTokenV2(String, Int64, Int32)

Initializes a new instance of the EventHubSequenceTokenV2 class.

EventHubSequenceTokenV2()

Initializes a new instance of the EventHubSequenceTokenV2 class.

public EventHubSequenceTokenV2 ();
Public Sub New ()

Remarks

This constructor is exposed for serializer use only.

Applies to

EventHubSequenceTokenV2(String, Int64, Int32)

Initializes a new instance of the EventHubSequenceTokenV2 class.

public EventHubSequenceTokenV2 (string eventHubOffset, long sequenceNumber, int eventIndex);
new Orleans.Streaming.EventHubs.EventHubSequenceTokenV2 : string * int64 * int -> Orleans.Streaming.EventHubs.EventHubSequenceTokenV2
Public Sub New (eventHubOffset As String, sequenceNumber As Long, eventIndex As Integer)

Parameters

eventHubOffset
String

EventHub offset within the partition from which this message came.

sequenceNumber
Int64

EventHub sequenceNumber for this message.

eventIndex
Int32

Index into a batch of events, if multiple events were delivered within a single EventHub message.

Applies to