Expand description
Task storage backend.
Re-exports§
pub use task_store::InMemoryTaskStore;pub use task_store::TaskStore;pub use task_store::TaskStoreConfig;pub use tenant::TenantAwareInMemoryTaskStore;pub use tenant::TenantContext;pub use tenant::TenantStoreConfig;pub use migration::Migration;pub use migration::MigrationRunner;pub use sqlite_store::SqliteTaskStore;pub use tenant_sqlite_store::TenantAwareSqliteTaskStore;pub use pg_migration::PgMigration;pub use pg_migration::PgMigrationRunner;pub use postgres_store::PostgresTaskStore;pub use tenant_postgres_store::TenantAwarePostgresTaskStore;
Modules§
- migration
- Schema versioning and migration support for
SqliteTaskStore. - pg_
migration - Schema versioning and migration support for
PostgresTaskStore. - postgres_
store PostgreSQL-backedTaskStoreimplementation.- sqlite_
store - SQLite-backed
TaskStoreimplementation. - task_
store - Task persistence trait and in-memory implementation.
- tenant
- Tenant-scoped task store implementations.
- tenant_
postgres_ store - Tenant-scoped
PostgreSQL-backedTaskStoreimplementation. - tenant_
sqlite_ store - Tenant-scoped SQLite-backed
TaskStoreimplementation.