Skip to main content

PLATFORM

Routes flow execution to platform-specific branches (swing, prime, standalone) with optional default fallback.

At a glance

  • Category Control
  • Version: 1.2.0
  • Applications: all
  • Scope: all

Config Options

NameDescriptionDefaultRequiredResolvedConstraintsConditional Rules
swingSteps executed when running in Swing.NonefalsefalseNoneNone
primeSteps executed when running in Prime.NonefalsefalseNoneNone
standaloneSteps executed when running in Standalone mode.NonefalsefalseNoneNone
defaultFallback steps executed when no platform-specific branch matches.NonefalsefalseNoneNone

Step-Level Validation Rules

Require At Least One:

  • At least one of: swing, prime, standalone, default

Examples

Platform-specific branch execution

 - step: PLATFORM
swing:
- step: SHOW_NOTIFICATION
message: "Running Swing path"
prime:
- step: SHOW_NOTIFICATION
message: "Running Prime path"
default:
- step: DEBUG
id: "platform-fallback"
omitDebugger: true

See Also

General Resources: