Type Alias polkadot_runtime_parachains::scheduler::pallet::ClaimQueue

source ·
pub type ClaimQueue<T: Config> = StorageValue<_GeneratedPrefixForStorageClaimQueue<T>, BTreeMap<CoreIndex, VecDeque<ParasEntryType<T>>>, ValueQuery>;
Expand description

One entry for each availability core. The VecDeque represents the assignments to be scheduled on that core. The value contained here will not be valid after the end of a block. Runtime APIs should be used to determine scheduled cores for the upcoming block.

Storage type is [StorageValue] with value type BTreeMap < CoreIndex, VecDeque < ParasEntryType < T > > >.

Aliased Type§

struct ClaimQueue<T: Config>(/* private fields */);