@numaproj/numaflow-js - v0.0.0-alpha.4
    Preparing search index...

    Interface IntervalWindow

    Represents a time window with start and end timestamps. Defines the boundaries of a reduce window.

    interface IntervalWindow {
        end: Date;
        start: Date;
    }
    Index

    Properties

    Properties

    end: Date

    End time of the window (exclusive).

    start: Date

    Start time of the window (inclusive).