Share via


StreamEvent.CreatePunctuation Method

Definition

Overloads

CreatePunctuation<TPayload>(Int64)

Create a punctuation event.

CreatePunctuation<TPayload>(StreamEvent<TPayload>, Int64)

Create a punctuation event, given an existing stream event as a template for the type of the event payload.

CreatePunctuation<TPayload>(Int64)

Create a punctuation event.

public static Microsoft.StreamProcessing.StreamEvent<TPayload> CreatePunctuation<TPayload> (long punctuationTime);
static member CreatePunctuation : int64 -> Microsoft.StreamProcessing.StreamEvent<'Payload>
Public Function CreatePunctuation(Of TPayload) (punctuationTime As Long) As StreamEvent(Of TPayload)

Type Parameters

TPayload

Parameters

punctuationTime
Int64

Timestamp of punctuation

Returns

An event instance

Applies to

CreatePunctuation<TPayload>(StreamEvent<TPayload>, Int64)

Create a punctuation event, given an existing stream event as a template for the type of the event payload.

public static Microsoft.StreamProcessing.StreamEvent<TPayload> CreatePunctuation<TPayload> (this Microsoft.StreamProcessing.StreamEvent<TPayload> existingEvent, long punctuationTime);
static member CreatePunctuation : Microsoft.StreamProcessing.StreamEvent<'Payload> * int64 -> Microsoft.StreamProcessing.StreamEvent<'Payload>
<Extension()>
Public Function CreatePunctuation(Of TPayload) (existingEvent As StreamEvent(Of TPayload), punctuationTime As Long) As StreamEvent(Of TPayload)

Type Parameters

TPayload

Parameters

existingEvent
StreamEvent<TPayload>

An existing event from which to draw the type information for a new punctuation.

punctuationTime
Int64

Timestamp of punctuation

Returns

An event instance

Applies to