Files
pezkuwi-sdk/bizinikiwi/pezframe/scheduler/README.md
T
pezkuwichain 1c0e57d984 feat: Rebrand Polkadot/Substrate references to PezkuwiChain
This commit systematically rebrands various references from Parity Technologies'
Polkadot/Substrate ecosystem to PezkuwiChain within the kurdistan-sdk.

Key changes include:
- Updated external repository URLs (zombienet-sdk, parity-db, parity-scale-codec, wasm-instrument) to point to pezkuwichain forks.
- Modified internal documentation and code comments to reflect PezkuwiChain naming and structure.
- Replaced direct references to  with  or specific paths within the  for XCM, Pezkuwi, and other modules.
- Cleaned up deprecated  issue and PR references in various  and  files, particularly in  and  modules.
- Adjusted image and logo URLs in documentation to point to PezkuwiChain assets.
- Removed or rephrased comments related to external Polkadot/Substrate PRs and issues.

This is a significant step towards fully customizing the SDK for the PezkuwiChain ecosystem.
2025-12-14 00:04:10 +03:00

35 lines
1.4 KiB
Markdown

# Scheduler
A module for scheduling dispatches.
- [`scheduler::Config`](https://docs.rs/pezpallet-scheduler/latest/pallet_scheduler/trait.Config.html)
- [`Call`](https://docs.rs/pezpallet-scheduler/latest/pallet_scheduler/enum.Call.html)
- [`Module`](https://docs.rs/pezpallet-scheduler/latest/pallet_scheduler/struct.Module.html)
## 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