vibesql-server 0.1.1

Network server with PostgreSQL wire protocol for VibeSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Scheduled function execution and cron job management
//!
//! This module provides:
//! - One-time scheduled task execution (SCHEDULE AFTER/AT)
//! - Recurring cron job execution (CREATE CRON)
//! - Durability through system tables
//! - Automatic retry with exponential backoff
//! - Background execution using tokio tasks

pub mod executor;
pub mod manager;
pub mod storage;

pub use executor::{ScheduleExecutor, ScheduleExecutorConfig};
pub use manager::{SchedulerManager, SchedulerManagerConfig};
pub use storage::{ScheduleRecord, ScheduleStatus, CronRecord};