Struct thor::FragmentSender

source ·
pub struct FragmentSender<'a, S: SyncNode + Send> {
    block0_hash: Hash,
    fees: LinearFee,
    setup: FragmentSenderSetup<'a, S>,
    expiry_generator: BlockDateGenerator,
    witness_mode: WitnessMode,
}

Fields§

§block0_hash: Hash§fees: LinearFee§setup: FragmentSenderSetup<'a, S>§expiry_generator: BlockDateGenerator§witness_mode: WitnessMode

Implementations§

source§

impl<'a, S: SyncNode + Send> FragmentSender<'a, S>

source

pub fn try_from_with_setup( jormungandr: &JormungandrProcess, block: BlockDate, setup: FragmentSenderSetup<'a, S> ) -> Result<Self, RestError>

source§

impl<'a, S: SyncNode + Send> FragmentSender<'a, S>

source

pub fn from_settings_with_setup( settings: &SettingsDto, setup: FragmentSenderSetup<'a, S> ) -> Self

source§

impl<'a, S: SyncNode + Send> FragmentSender<'a, S>

source

pub fn from_settings( settings: &SettingsDto, generator: BlockDateGenerator, setup: FragmentSenderSetup<'a, S> ) -> Self

source§

impl<'a, S: SyncNode + Send> FragmentSender<'a, S>

source

pub fn from_with_setup( block0_configuration: &Block0Configuration, setup: FragmentSenderSetup<'a, S> ) -> Self

source

pub fn new( block0_hash: Hash, fees: LinearFee, expiry_generator: BlockDateGenerator, setup: FragmentSenderSetup<'a, S> ) -> Self

source

pub fn block0_hash(&self) -> Hash

source

pub fn fees(&self) -> LinearFee

source

pub fn date(&self) -> BlockDate

source

pub fn witness_mode(self, witness_mode: WitnessMode) -> Self

source

pub fn set_valid_until(self, valid_until: BlockDate) -> Self

source

pub fn clone_with_setup<U: SyncNode + Send>( &self, setup: FragmentSenderSetup<'a, U> ) -> FragmentSender<'a, U>

source

pub fn send_batch_fragments<A: FragmentNode + SyncNode + Sized + Send>( &self, fragments: Vec<Fragment>, fail_fast: bool, node: &A ) -> Result<FragmentsProcessingSummary, FragmentSenderError>

source

pub fn send_batch_fragments_in_chunks<A: FragmentNode + SyncNode + Sized + Send>( &self, fragments: Vec<Fragment>, chunks_size: usize, fail_fast: bool, node: &A ) -> Result<FragmentsProcessingSummary, FragmentSenderError>

source

pub fn send_transaction<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &Wallet, via: &A, value: Value ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_transaction_to_address<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: Address, via: &A, value: Value ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_transaction_with_witness_mode<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: Address, via: &A, value: Value, witness_mode: WitnessMode ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_transaction_to_many<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &[Wallet], via: &A, value: Value ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_full_delegation<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &StakePool, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_split_delegation<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, distribution: &[(&StakePool, u8)], via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_owner_delegation<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &StakePool, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_pool_registration<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &StakePool, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_pool_update<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &StakePool, update_stake_pool: &StakePool, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_pool_retire<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, to: &StakePool, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_vote_plan<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_vote_cast_with_witness_mode<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, proposal_index: u8, choice: &Choice, via: &A, witness_mode: WitnessMode ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_vote_cast<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, proposal_index: u8, choice: &Choice, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_public_vote_tally<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_update_proposal<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, bft_secret: &SecretKey<Ed25519>, update_proposal: UpdateProposal, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_update_vote<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, bft_secret: &SecretKey<Ed25519>, update_vote: UpdateVote, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_private_vote_tally<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, inner: DecryptedPrivateTally, via: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_vote_tally<A: FragmentNode + SyncNode + Sized + Send>( &self, from: &mut Wallet, vote_plan: &VotePlan, via: &A, tally_type: VoteTallyPayload ) -> Result<MemPoolCheck, FragmentSenderError>

source

pub fn send_transactions<A: FragmentNode + SyncNode + Sized + Send>( &self, n: u32, wallet1: &mut Wallet, wallet2: &Wallet, node: &A, value: Value ) -> Result<(), FragmentSenderError>

source

pub fn send_transactions_with_iteration_delay<A: FragmentNode + SyncNode + Sized + Send>( &self, n: u32, wallet1: &mut Wallet, wallet2: &mut Wallet, node: &A, value: Value, duration: Duration ) -> Result<(), FragmentSenderError>

source

pub fn send_transactions_round_trip<A: FragmentNode + SyncNode + Sized + Send>( &self, n: u32, wallet1: &mut Wallet, wallet2: &mut Wallet, node: &A, value: Value ) -> Result<(), FragmentSenderError>

source

pub fn verify<A: FragmentNode + SyncNode + Sized + Send>( &self, check: &MemPoolCheck, node: &A ) -> Result<(), FragmentSenderError>

source

fn dump_fragment_if_enabled( &self, sender: &Wallet, fragment: &Fragment, via: &dyn FragmentNode ) -> Result<(), FragmentSenderError>

source

fn dump_fragments_if_enabled( &self, fragments: &[Fragment], via: &dyn FragmentNode ) -> Result<(), FragmentSenderError>

source

pub fn send_fragment<A: FragmentNode + SyncNode + Sized + Send>( &self, sender: &mut Wallet, fragment: Fragment, node: &A ) -> Result<MemPoolCheck, FragmentSenderError>

source

fn confirm_transaction_if_enabled(&self, sender: &mut Wallet)

source

fn wait_for_node_sync_if_enabled<A: FragmentNode + SyncNode + Sized + Send>( &self, node: &A ) -> Result<(), SyncNodeError>

Trait Implementations§

source§

impl<'a, S: Clone + SyncNode + Send> Clone for FragmentSender<'a, S>

source§

fn clone(&self) -> FragmentSender<'a, S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> From<&Block0Configuration> for FragmentSender<'a, DummySyncNode>

source§

fn from(block0: &Block0Configuration) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&SettingsDto> for FragmentSender<'a, DummySyncNode>

source§

fn from(settings: &SettingsDto) -> Self

Converts to this type from the input type.
source§

impl<'a> TryFrom<&JormungandrProcess> for FragmentSender<'a, DummySyncNode>

§

type Error = RestError

The type returned in the event of a conversion error.
source§

fn try_from(jormungandr: &JormungandrProcess) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<'a, S> !RefUnwindSafe for FragmentSender<'a, S>

§

impl<'a, S> Send for FragmentSender<'a, S>where S: Sync,

§

impl<'a, S> Sync for FragmentSender<'a, S>where S: Sync,

§

impl<'a, S> Unpin for FragmentSender<'a, S>

§

impl<'a, S> !UnwindSafe for FragmentSender<'a, S>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more