Enum pallet_broker::pallet::Event
source · pub enum Event<T: Config> {
Show 28 variants
Purchased {
who: T::AccountId,
region_id: RegionId,
price: BalanceOf<T>,
duration: Timeslice,
},
Renewable {
core: CoreIndex,
price: BalanceOf<T>,
begin: Timeslice,
workload: Schedule,
},
Renewed {
who: T::AccountId,
price: BalanceOf<T>,
old_core: CoreIndex,
core: CoreIndex,
begin: Timeslice,
duration: Timeslice,
workload: Schedule,
},
Transferred {
region_id: RegionId,
duration: Timeslice,
old_owner: T::AccountId,
owner: T::AccountId,
},
Partitioned {
old_region_id: RegionId,
new_region_ids: (RegionId, RegionId),
},
Interlaced {
old_region_id: RegionId,
new_region_ids: (RegionId, RegionId),
},
Assigned {
region_id: RegionId,
duration: Timeslice,
task: TaskId,
},
Pooled {
region_id: RegionId,
duration: Timeslice,
},
CoreCountRequested {
core_count: CoreIndex,
},
CoreCountChanged {
core_count: CoreIndex,
},
ReservationMade {
index: u32,
workload: Schedule,
},
ReservationCancelled {
index: u32,
workload: Schedule,
},
SaleInitialized {
sale_start: BlockNumberFor<T>,
leadin_length: BlockNumberFor<T>,
start_price: BalanceOf<T>,
regular_price: BalanceOf<T>,
region_begin: Timeslice,
region_end: Timeslice,
ideal_cores_sold: CoreIndex,
cores_offered: CoreIndex,
},
Leased {
task: TaskId,
until: Timeslice,
},
LeaseEnding {
task: TaskId,
when: Timeslice,
},
SalesStarted {
price: BalanceOf<T>,
core_count: CoreIndex,
},
RevenueClaimBegun {
region: RegionId,
max_timeslices: Timeslice,
},
RevenueClaimItem {
when: Timeslice,
amount: BalanceOf<T>,
},
RevenueClaimPaid {
who: T::AccountId,
amount: BalanceOf<T>,
next: Option<RegionId>,
},
CreditPurchased {
who: T::AccountId,
beneficiary: RelayAccountIdOf<T>,
amount: BalanceOf<T>,
},
RegionDropped {
region_id: RegionId,
duration: Timeslice,
},
ContributionDropped {
region_id: RegionId,
},
HistoryInitialized {
when: Timeslice,
private_pool_size: CoreMaskBitCount,
system_pool_size: CoreMaskBitCount,
},
HistoryDropped {
when: Timeslice,
revenue: BalanceOf<T>,
},
HistoryIgnored {
when: Timeslice,
revenue: BalanceOf<T>,
},
ClaimsReady {
when: Timeslice,
system_payout: BalanceOf<T>,
private_payout: BalanceOf<T>,
},
CoreAssigned {
core: CoreIndex,
when: RelayBlockNumberOf<T>,
assignment: Vec<(CoreAssignment, PartsOf57600)>,
},
AllowedRenewalDropped {
when: Timeslice,
core: CoreIndex,
},
// some variants omitted
}
Expand description
The Event
enum of this pallet
Variants§
Purchased
Fields
A Region of Bulk Coretime has been purchased.
Renewable
Fields
The workload of a core has become renewable.
Renewed
Fields
A workload has been renewed.
Transferred
Fields
Ownership of a Region has been transferred.
Partitioned
Fields
A Region has been split into two non-overlapping Regions.
Interlaced
Fields
A Region has been converted into two overlapping Regions each of lesser regularity.
Assigned
Fields
A Region has been assigned to a particular task.
Pooled
Fields
A Region has been added to the Instantaneous Coretime Pool.
CoreCountRequested
A new number of cores has been requested.
CoreCountChanged
The number of cores available for scheduling has changed.
ReservationMade
There is a new reservation for a workload.
ReservationCancelled
Fields
A reservation for a workload has been cancelled.
SaleInitialized
Fields
sale_start: BlockNumberFor<T>
The local block number at which the sale will/did start.
leadin_length: BlockNumberFor<T>
The length in blocks of the Leadin Period (where the price is decreasing).
region_end: Timeslice
The timeslice on which the Regions which are being sold in the sale terminate. (i.e. One after the last timeslice which the Regions control.)
A new sale has been initialized.
Leased
Fields
A new lease has been created.
LeaseEnding
Fields
A lease is about to end.
SalesStarted
Fields
The sale rotation has been started and a new sale is imminent.
RevenueClaimBegun
Fields
The act of claiming revenue has begun.
RevenueClaimItem
Fields
A particular timeslice has a non-zero claim.
RevenueClaimPaid
Fields
A revenue claim has (possibly only in part) been paid.
CreditPurchased
Fields
beneficiary: RelayAccountIdOf<T>
The Relay-chain account to which the credit will be made.
Some Instantaneous Coretime Pool credit has been purchased.
RegionDropped
Fields
A Region has been dropped due to being out of date.
ContributionDropped
Some historical Instantaneous Core Pool contribution record has been dropped.
HistoryInitialized
Fields
private_pool_size: CoreMaskBitCount
The amount of privately contributed Coretime to the Instantaneous Coretime Pool.
system_pool_size: CoreMaskBitCount
The amount of Coretime contributed to the Instantaneous Coretime Pool by the Polkadot System.
Some historical Instantaneous Core Pool payment record has been initialized.
HistoryDropped
Fields
Some historical Instantaneous Core Pool payment record has been dropped.
HistoryIgnored
Fields
Some historical Instantaneous Core Pool payment record has been ignored because the timeslice was already known. Governance may need to intervene.
ClaimsReady
Fields
Some historical Instantaneous Core Pool Revenue is ready for payout claims.
CoreAssigned
Fields
when: RelayBlockNumberOf<T>
The Relay-chain block at which this assignment should take effect.
assignment: Vec<(CoreAssignment, PartsOf57600)>
The workload to be done on the Core.
A Core has been assigned to one or more tasks and/or the Pool on the Relay-chain.
AllowedRenewalDropped
Fields
Some historical Instantaneous Core Pool payment record has been dropped.
Trait Implementations§
source§impl<T: Config> Decode for Event<T>where
T::AccountId: Decode,
BalanceOf<T>: Decode,
BlockNumberFor<T>: Decode,
RelayAccountIdOf<T>: Decode,
RelayBlockNumberOf<T>: Decode,
impl<T: Config> Decode for Event<T>where T::AccountId: Decode, BalanceOf<T>: Decode, BlockNumberFor<T>: Decode, RelayAccountIdOf<T>: Decode, RelayBlockNumberOf<T>: Decode,
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy ) -> Result<Self, Error>
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>( input: &mut I, dst: &mut MaybeUninit<Self> ) -> Result<DecodeFinished, Error>where I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
source§impl<T: Config> Encode for Event<T>where
T::AccountId: Encode,
BalanceOf<T>: Encode,
BlockNumberFor<T>: Encode,
RelayAccountIdOf<T>: Encode,
RelayBlockNumberOf<T>: Encode,
impl<T: Config> Encode for Event<T>where T::AccountId: Encode, BalanceOf<T>: Encode, BlockNumberFor<T>: Encode, RelayAccountIdOf<T>: Encode, RelayBlockNumberOf<T>: Encode,
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy )
§fn using_encoded<R, F>(&self, f: F) -> Rwhere
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config> PartialEq<Event<T>> for Event<T>
impl<T: Config> PartialEq<Event<T>> for Event<T>
source§impl<T> TypeInfo for Event<T>where
T::AccountId: TypeInfo + 'static,
BalanceOf<T>: TypeInfo + 'static,
BlockNumberFor<T>: TypeInfo + 'static,
RelayAccountIdOf<T>: TypeInfo + 'static,
RelayBlockNumberOf<T>: TypeInfo + 'static,
PhantomData<T>: TypeInfo + 'static,
T: Config + 'static,
impl<T> TypeInfo for Event<T>where T::AccountId: TypeInfo + 'static, BalanceOf<T>: TypeInfo + 'static, BlockNumberFor<T>: TypeInfo + 'static, RelayAccountIdOf<T>: TypeInfo + 'static, RelayBlockNumberOf<T>: TypeInfo + 'static, PhantomData<T>: TypeInfo + 'static, T: Config + 'static,
impl<T: Config> EncodeLike<Event<T>> for Event<T>where T::AccountId: Encode, BalanceOf<T>: Encode, BlockNumberFor<T>: Encode, RelayAccountIdOf<T>: Encode, RelayBlockNumberOf<T>: Encode,
impl<T: Config> Eq for Event<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Event<T>where T: RefUnwindSafe, <T as Config>::AccountId: RefUnwindSafe, <<T as Config>::Coretime as CoretimeInterface>::AccountId: RefUnwindSafe, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: RefUnwindSafe, <<T as Config>::Coretime as CoretimeInterface>::BlockNumber: RefUnwindSafe, <<<T as Config>::Block as Block>::Header as Header>::Number: RefUnwindSafe,
impl<T> Send for Event<T>where T: Send, <<T as Config>::Coretime as CoretimeInterface>::AccountId: Send, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Send, <<T as Config>::Coretime as CoretimeInterface>::BlockNumber: Send,
impl<T> Sync for Event<T>where T: Sync, <<T as Config>::Coretime as CoretimeInterface>::AccountId: Sync, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Sync, <<T as Config>::Coretime as CoretimeInterface>::BlockNumber: Sync,
impl<T> Unpin for Event<T>where T: Unpin, <T as Config>::AccountId: Unpin, <<T as Config>::Coretime as CoretimeInterface>::AccountId: Unpin, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: Unpin, <<T as Config>::Coretime as CoretimeInterface>::BlockNumber: Unpin, <<<T as Config>::Block as Block>::Header as Header>::Number: Unpin,
impl<T> UnwindSafe for Event<T>where T: UnwindSafe, <T as Config>::AccountId: UnwindSafe, <<T as Config>::Coretime as CoretimeInterface>::AccountId: UnwindSafe, <<T as Config>::Currency as Inspect<<T as Config>::AccountId>>::Balance: UnwindSafe, <<T as Config>::Coretime as CoretimeInterface>::BlockNumber: UnwindSafe, <<<T as Config>::Block as Block>::Header as Header>::Number: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere T: Decode,
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
source§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere T: Codec,
fn blake2_128(&self) -> [u8; 16]
fn blake2_256(&self) -> [u8; 32]
fn blake2_128_concat(&self) -> Vec<u8, Global> ⓘ
fn twox_128(&self) -> [u8; 16]
fn twox_256(&self) -> [u8; 32]
fn twox_64_concat(&self) -> Vec<u8, Global> ⓘ
fn identity(&self) -> Vec<u8, Global> ⓘ
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere T: Codec,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.