Edit

Share via


EventHubSequenceToken Constructors

Definition

Overloads

EventHubSequenceToken()

Initializes a new instance of the EventHubSequenceToken class.

EventHubSequenceToken(String, Int64, Int32)

Initializes a new instance of the EventHubSequenceToken class.

EventHubSequenceToken()

Initializes a new instance of the EventHubSequenceToken class.

public EventHubSequenceToken ();
Public Sub New ()

Remarks

This constructor is exposed for serializer use only.

Applies to

EventHubSequenceToken(String, Int64, Int32)

Initializes a new instance of the EventHubSequenceToken class.

public EventHubSequenceToken (string eventHubOffset, long sequenceNumber, int eventIndex);
new Orleans.Streaming.EventHubs.EventHubSequenceToken : string * int64 * int -> Orleans.Streaming.EventHubs.EventHubSequenceToken
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