Sequence Emit

std/filler/scalar/i64::Emit


Parameters

↳ var value: i64 = 0

Inputs

trigger: Block<void>

Outputs

↦ value: Stream<i64>


Emit a value as stream when trigger is received.

The value 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