GroupedWindowPlanNode<TInput,TState,TResult> Class

Definition

A node in the query plan representing a grouped window snapshot operation.

public sealed class GroupedWindowPlanNode<TInput,TState,TResult> : Microsoft.StreamProcessing.UnaryPlanNode
type GroupedWindowPlanNode<'Input, 'State, 'Result> = class
    inherit UnaryPlanNode
Public NotInheritable Class GroupedWindowPlanNode(Of TInput, TState, TResult)
Inherits UnaryPlanNode

Type Parameters

TInput

Input type of the aggregate operation

TState

State type of the aggregate operation

TResult

Result type of the aggregate operation

Inheritance
Microsoft.StreamProcessing.UnaryPlanNode
GroupedWindowPlanNode<TInput,TState,TResult>

Properties

Aggregate

The aggregate object used in the window operation.

FinalResultSelector

The function used to compute result values in the window operation.

KeySelector

The function used to select key values in the window operation.

Kind

Indicates that the current node is a grouped window aggregation operation.

Applies to