Trait t3rn_primitives::clock::OnHookQueues
source · pub trait OnHookQueues<T: Config> {
// Required methods
fn process(n: BlockNumberFor<T>, hook_weight_limit: Weight) -> Weight;
fn process_weekly(n: BlockNumberFor<T>, hook_weight_limit: Weight) -> Weight;
fn process_bi_weekly(
n: BlockNumberFor<T>,
hook_weight_limit: Weight
) -> Weight;
fn process_daily(n: BlockNumberFor<T>, hook_weight_limit: Weight) -> Weight;
fn process_hourly(n: BlockNumberFor<T>, hook_weight_limit: Weight) -> Weight;
}