Skip to main content

Module fuel

Module fuel 

Source
Expand description

Fuel budgets for WASM scheduled plugin calls.

Matches the shape in crate::types::fuel. The RUN budget is deliberately generous — scheduled jobs routinely do real work (database sweeps, report generation) and the host gates them via the scheduler’s tick interval rather than per-call fuel.

Constants§

CLEANUP
Fuel for super::ScheduledPlugin::cleanup.
RUN
Fuel for a single super::ScheduledPlugin::run call.
SCHEDULES
Fuel for super::ScheduledPlugin::schedules (called once at init). Small because the list is static.