62 releases (40 major breaking)

new 42.0.0 Jul 15, 2025
41.2.0 May 27, 2025
41.0.0 Apr 3, 2025
40.2.1 Jun 23, 2025
2.0.0-rc5 Jul 24, 2020

#9 in #pallet

Download history 4827/week @ 2025-03-25 4768/week @ 2025-04-01 4737/week @ 2025-04-08 3973/week @ 2025-04-15 6592/week @ 2025-04-22 4598/week @ 2025-04-29 3674/week @ 2025-05-06 3243/week @ 2025-05-13 3920/week @ 2025-05-20 2999/week @ 2025-05-27 3107/week @ 2025-06-03 3238/week @ 2025-06-10 4161/week @ 2025-06-17 3716/week @ 2025-06-24 4019/week @ 2025-07-01 2358/week @ 2025-07-08

14,835 downloads per month
Used in 61 crates (9 directly)

Apache-2.0

3MB
49K SLoC

Scheduler

A module for scheduling dispatches.

Overview

This module exposes capabilities for scheduling dispatches to occur at a specified block number or at a specified period. These scheduled dispatches may be named or anonymous and may be canceled.

NOTE: The scheduled calls will be dispatched with the default filter for the origin: namely frame_system::Config::BaseCallFilter for all origin except root which will get no filter. And not the filter contained in origin use to call fn schedule.

If a call is scheduled using proxy or whatever mechanism which adds filter, then those filter will not be used when dispatching the schedule call.

Interface

Dispatchable Functions

  • schedule - schedule a dispatch, which may be periodic, to occur at a specified block and with a specified priority.
  • cancel - cancel a scheduled dispatch, specified by block number and index.
  • schedule_named - augments the schedule interface with an additional Vec<u8> parameter that can be used for identification.
  • cancel_named - the named complement to the cancel function.

License: Apache 2.0

Dependencies

~25–40MB
~671K SLoC