Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
  • PyFlink DataStream
    • StreamExecutionEnvironment
    • DataStream
    • Functions
    • State
    • Timer
    • Window
    • Checkpoint
    • Side Outputs
    • Connectors
    • Formats
  • PyFlink Common

pyflink.datastream.data_stream.DataStream.window_all#

DataStream.window_all(window_assigner: pyflink.datastream.window.WindowAssigner) → pyflink.datastream.data_stream.AllWindowedStream[source]#

Windows this data stream to a AllWindowedStream, which evaluates windows over a non key grouped stream. Elements are put into windows by a WindowAssigner. The grouping of elements is done by window.

A Trigger can be defined to specify when windows are evaluated. However, WindowAssigners have a default Trigger that is used if a Trigger is not specified.

Parameters

window_assigner – The WindowAssigner that assigns elements to windows.

Returns

The trigger windows data stream.

New in version 1.16.0.

previous

pyflink.datastream.data_stream.DataStream.filter

next

pyflink.datastream.data_stream.DataStream.union

Show Source

Created using Sphinx 4.5.0.