Sequence Emit

std/filler/scalar/i16::Emit


Parameters

↳ var value: i16 = 0

Inputs

trigger: Block<void>

Outputs

↦ value: Stream<i16>


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