EventSequenceTokenV2 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
EventSequenceTokenV2() |
Initializes a new instance of the EventSequenceTokenV2 class. |
EventSequenceTokenV2(Int64) |
Initializes a new instance of the EventSequenceTokenV2 class. |
EventSequenceTokenV2(Int64, Int32) |
Initializes a new instance of the EventSequenceTokenV2 class. |
EventSequenceTokenV2()
Initializes a new instance of the EventSequenceTokenV2 class.
public EventSequenceTokenV2 ();
Public Sub New ()
Remarks
This constructor is for serializer use only.
Applies to
EventSequenceTokenV2(Int64)
- Source:
- EventSequenceTokenV2.cs
Initializes a new instance of the EventSequenceTokenV2 class.
public EventSequenceTokenV2 (long seqNumber);
new Orleans.Providers.Streams.Common.EventSequenceTokenV2 : int64 -> Orleans.Providers.Streams.Common.EventSequenceTokenV2
Public Sub New (seqNumber As Long)
Parameters
- seqNumber
- Int64
The sequence number.
Applies to
EventSequenceTokenV2(Int64, Int32)
- Source:
- EventSequenceTokenV2.cs
Initializes a new instance of the EventSequenceTokenV2 class.
public EventSequenceTokenV2 (long seqNumber, int eventInd);
new Orleans.Providers.Streams.Common.EventSequenceTokenV2 : int64 * int -> Orleans.Providers.Streams.Common.EventSequenceTokenV2
Public Sub New (seqNumber As Long, eventInd As Integer)
Parameters
- seqNumber
- Int64
The sequence number.
- eventInd
- Int32
The event index, for events which are part of a batch of events.