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

pub struct Tpu { /* fields omitted */ }

Methods

impl Tpu[src]

pub fn new(
    cluster_info: &Arc<RwLock<ClusterInfo>>,
    poh_recorder: &Arc<Mutex<PohRecorder>>,
    entry_receiver: Receiver<WorkingBankEntry>,
    transactions_sockets: Vec<UdpSocket>,
    tpu_forwards_sockets: Vec<UdpSocket>,
    broadcast_sockets: Vec<UdpSocket>,
    sigverify_disabled: bool,
    transaction_status_sender: Option<TransactionStatusSender>,
    blockstore: &Arc<Blockstore>,
    broadcast_type: &BroadcastStageType,
    exit: &Arc<AtomicBool>,
    shred_version: u16
) -> 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> 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> Erased for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,