Sequence Emit

std/filler/vector/i64::Emit


Parameters

↳ var value: Vec<i64> = [0]

Inputs

trigger: Block<void>

Outputs

↦ value: Stream<Vec<i64>>


Emit a value as stream when trigger is received.

The vector is sent through the stream and the stream is closed immediately afterwards.

graph LR
    T("Emit(value=[🟧 🟧 🟧])")
    B["〈🟦〉"] -->|trigger| T
    
    T -->|value| O["[🟧 🟧 🟧]"]

    style B fill:#ffff,stroke:#ffff
    style O fill:#ffff,stroke:#ffff