PartitionedStreamEvent.CreateStart<TKey,TPayload> Method

Definition

Create a start-edge event.

public static Microsoft.StreamProcessing.PartitionedStreamEvent<TKey,TPayload> CreateStart<TKey,TPayload> (TKey key, long startTime, TPayload payload);
static member CreateStart : 'Key * int64 * 'Payload -> Microsoft.StreamProcessing.PartitionedStreamEvent<'Key, 'Payload>
Public Function CreateStart(Of TKey, TPayload) (key As TKey, startTime As Long, payload As TPayload) As PartitionedStreamEvent(Of TKey, TPayload)

Type Parameters

TKey

The type of the partition key for this event.

TPayload

The type of the underlying event.

Parameters

key
TKey

The partition to which the event belongs

startTime
Int64

Timestamp of the event

payload
TPayload

Payload of the event

Returns

An event instance

Applies to