Store
Last updated
Last updated
[data/Store]
Stores data and sends it via data
when read. When the store is empty, any attempt to read the contents will result in a signal sent out via not found
.
Example:
data
set to "hello"
null@1 received via read
"hello"@1 sent via data
(output)
Keywords: variable, container, buffer, data
data: any
Receives contents of the store. San be set as parameter, or received as signal.
read: any
Receives a signal that triggers the contents being sent via data
(output), or not found
when has no content.
data: any
Sends store contents.
written: null
Sends signal when contents were set in flow.
not found: null
Sends signal on read attempt while store has no content.