Struct solana_core::tpu::Tpu[][src]

pub struct Tpu { /* fields omitted */ }

Implementations

impl Tpu[src]

pub fn new(
    cluster_info: &Arc<ClusterInfo>,
    poh_recorder: &Arc<Mutex<PohRecorder>>,
    entry_receiver: Receiver<WorkingBankEntry>,
    retransmit_slots_receiver: CrossbeamReceiver<HashMap<Slot, Arc<Bank>>>,
    transactions_sockets: Vec<UdpSocket>,
    tpu_forwards_sockets: Vec<UdpSocket>,
    broadcast_sockets: Vec<UdpSocket>,
    subscriptions: &Arc<RpcSubscriptions>,
    transaction_status_sender: Option<TransactionStatusSender>,
    blockstore: &Arc<Blockstore>,
    broadcast_type: &BroadcastStageType,
    exit: &Arc<AtomicBool>,
    shred_version: u16,
    vote_tracker: Arc<VoteTracker>,
    bank_forks: Arc<RwLock<BankForks>>,
    verified_vote_sender: VerifiedVoteSender,
    replay_vote_receiver: ReplayVoteReceiver,
    replay_vote_sender: ReplayVoteSender,
    bank_notification_sender: Option<BankNotificationSender>,
    tpu_coalesce_ms: u64
) -> Self
[src]

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

Auto Trait Implementations

impl !RefUnwindSafe for Tpu

impl Send for Tpu

impl Sync for Tpu

impl Unpin for Tpu

impl !UnwindSafe for Tpu

Blanket Implementations

impl<T> AbiExample for T[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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>, 

impl<T> WithSubscriber for T[src]