Circuits
Catalyst Serverless Circuits is a component which is a part of the Catalyst development platform that helps to orchestrate tasks and automate workflows. You can enable concurrent or sequential executions of Catalyst functions in a circuit, and additionally include conditions, data, and paths in the workflow, to define a repeatable pattern of activities that achieves a business outcome. This section covers the various SDK methods that can be used to implement the circuits component in your Catalyst application.
Get a component instance
A component instance is an object that can be used to access the pre-defined configurations specific to a particular component. This process will not fire a server-side call. Also note that this component instance will be used in multiple scenarios while implementing the circuit component in your application.
The circuit reference can be created in the following way :
copy
#Get a circuit component instance
circuit = app.circuit()
Yes
No
Send your feedback to us