WJb Docs - Reference
Browse APIs, configuration options, interfaces, and implementation details.
⚡ Actions
🔀 Workflow
📦 Jobs
⚙️ Runtime
💾 Persistence
🗄 Storage
🧩 Workflow Metadata
🛠 Extensions & Helpers
base keyword
Represents the inheritance keyword used to reference a parent action definition.
The base keyword enables action composition and configuration reuse by inheriting settings from another action.
Purpose
Use the base keyword to build an action from an existing definition.
Child Action
↓
base
↓
Base Action
Responsibilities
- Referencing a base action
- Enabling configuration reuse
- Reducing duplication
- Supporting inheritance scenarios
Inheritance Behavior
Base Action
↓
Inherited Values
↓
Child Action
The child action inherits configuration from the base action.
When conflicts occur, child values override base values.
Relationship to Action.More
Base Action.More
+
Child Action.More
↓
Merged Result
Action.More values are merged using child-wins precedence.
Related Types
- Action.More
- IActionFactory
- IAction
- JobAction
See Also
- Action.More
- Action.More Inheritance
- IActionFactory