WJb Docs - Reference
Browse APIs, configuration options, interfaces, and implementation details.
⚡ Actions
🔀 Workflow
📦 Jobs
⚙️ Runtime
💾 Persistence
🗄 Storage
🧩 Workflow Metadata
🛠 Extensions & Helpers
FileStorage
Provides a file system based storage implementation for WJb.
FileStorage persists runtime data using files and directories instead of an in-memory or database-backed store.
Purpose
Use FileStorage when jobs and runtime information should be stored on the file system.
IWJb
↓
FileStorage
↓
Files
Responsibilities
- Persisting data to files
- Loading stored data
- Managing storage locations
- Supporting durable runtime state
- Providing lightweight persistence
Relationship to IStorage
IStorage
↓
FileStorage
FileStorage is a concrete storage implementation.
Typical Usage
Development
Desktop Applications
Single-Server Deployments
Lightweight Persistence
Related Types
- IStorage
- IStore
- InMemoryStore
- IWJb
See Also
- IStorage
- IStore
- InMemoryStore