EventHubSequenceTokenV2 Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.