Crates.io | pallet-scheduler |
lib.rs | pallet-scheduler |
version | 39.0.0 |
source | src |
created_at | 2020-04-14 19:31:31.203322 |
updated_at | 2024-09-26 08:35:01.7436 |
description | FRAME Scheduler pallet |
homepage | https://paritytech.github.io/polkadot-sdk/ |
repository | https://github.com/paritytech/polkadot-sdk.git |
max_upload_size | |
id | 230245 |
size | 212,329 |
A module for scheduling dispatches.
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.
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
Polkadot SDK stable2409