Package-level declarations
Types
Reads a one-shot value from the client's DataMailer under dataKey and branches on whether it was there.
Evaluates the boolean expression and branches on its result. Runs on the IO dispatcher.
Reads one or more values from data sources and emits them downstream. Runs on the IO dispatcher.
Hands the event's incomingData to the DataProcessor registered by the client under the id processWith. Processors are supplied by the host application, so what the processing does is opaque to the framework.
Deletes values from data sources. Runs on the IO dispatcher.
Posts a value into the client's DataMailer under dataKey, where a later CheckForReceivedData can pick it up. The mailer is a one-shot channel, so this is the way to hand a value to another screen.
Reshapes the event's incomingData into a new value by applying template through the client's TemplateProcessor, letting a payload be rewritten mid-chain without a round trip.
Writes values into data sources. Runs on the IO dispatcher.