Trait rlink::core::window::WindowAssigner[][src]

pub trait WindowAssigner where
    Self: NamedFunction + CheckpointFunction + Debug
{ fn assign_windows(
        &self,
        timestamp: u64,
        context: WindowAssignerContext
    ) -> Vec<Window>; }
Expand description

A WindowAssigner assigns zero or more Windows to an element.

Required methods

Returns a collection of windows that should be assigned to the element.

Implementors