Context Manager Node
Context Manager provides stateful variables across executions.
Use it for counters, flags, and shared runtime context.
Configuration Fields
| Field | Required | Purpose |
|---|---|---|
| Operation | Yes | get, set, increment, decrement, reset |
| Scope | Yes | workflow or device |
| Variable Name | Yes | Key name for stored value |
| Value | Conditional | Required for set-like operations |
Best Practices
- Define variable naming conventions.
- Limit shared mutable state in high-concurrency paths.
- Use workflow scope unless cross-flow state is required.
Common Issues
- Race-like behavior from uncontrolled shared updates.
- Incorrect scope causing unexpected value visibility.
