[][src]Struct solana_core::tvu::Tvu

pub struct Tvu { /* fields omitted */ }

Methods

impl Tvu[src]

pub fn new(
    vote_account: &Pubkey,
    voting_keypair: Option<Arc<Keypair>>,
    storage_keypair: &Arc<Keypair>,
    bank_forks: &Arc<RwLock<BankForks>>,
    cluster_info: &Arc<RwLock<ClusterInfo>>,
    sockets: Sockets,
    blockstore: Arc<Blockstore>,
    storage_state: &StorageState,
    blockstream_unix_socket: Option<&PathBuf>,
    ledger_signal_receiver: Receiver<bool>,
    subscriptions: &Arc<RpcSubscriptions>,
    poh_recorder: &Arc<Mutex<PohRecorder>>,
    leader_schedule_cache: &Arc<LeaderScheduleCache>,
    exit: &Arc<AtomicBool>,
    completed_slots_receiver: CompletedSlotsReceiver,
    block_commitment_cache: Arc<RwLock<BlockCommitmentCache>>,
    cfg: Option<Arc<AtomicBool>>,
    transaction_status_sender: Option<TransactionStatusSender>,
    rewards_recorder_sender: Option<RewardsRecorderSender>,
    snapshot_package_sender: Option<SnapshotPackageSender>,
    tvu_config: TvuConfig
) -> Self
[src]

This service receives messages from a leader in the network and processes the transactions on the bank state.

Arguments

  • cluster_info - The cluster_info state.
  • sockets - fetch, repair, and retransmit sockets
  • blockstore - the ledger itself

pub fn join(self) -> Result<()>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Tvu

impl Send for Tvu

impl Sync for Tvu

impl Unpin for Tvu

impl !UnwindSafe for Tvu

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

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