Skip to main content
Version: Streamsheets 2.4

FEEDINBOX

This function feeds the inbox of a Streamsheet within the same App. The Streamsheet Settings must be set to "On Data Arrival", to trigger the calculation. This way a dependent Streamsheet can be triggered in two different ways. Either using the FEEDINBOX() function, which leads to an "asynchronous" call, since the message is just added to the inbox and waits for the next step. Or using EXECUTE(), which will lead to a direct execution (synchronous).

Syntax

=FEEDINBOX(JSON, Target)

Arguments

NameDescription
JSONA key to a json object, defined by JSON, DICTIONARY, READ, SUBTREE, INBOX or OUTBOX.
TargetA location sheet name where the JSON will be placed in the inbox.

Return Value

TRUE, if successful.

Example

FunctionResult
=FEEDINBOX(DICTIONARY(A2:B5), “S1”)
Appending an object to a message. The message content will look as follows