[][src]Struct nimiq_mempool::Mempool

pub struct Mempool<'env> {
    pub notifier: RwLock<Notifier<'env, MempoolEvent>>,
    // some fields omitted
}

Fields

notifier: RwLock<Notifier<'env, MempoolEvent>>

Methods

impl<'env> Mempool<'env>[src]

pub fn new(
    blockchain: Arc<Blockchain<'env>>,
    config: MempoolConfig
) -> Arc<Self>
[src]

pub fn is_filtered(&self, hash: &Blake2bHash) -> bool[src]

pub fn push_transaction(&self, transaction: Transaction) -> ReturnCode[src]

pub fn contains(&self, hash: &Blake2bHash) -> bool[src]

pub fn get_transaction(&self, hash: &Blake2bHash) -> Option<Arc<Transaction>>[src]

pub fn get_transactions(
    &self,
    max_count: usize,
    min_fee_per_byte: f64
) -> Vec<Arc<Transaction>>
[src]

pub fn get_transactions_for_block(&self, max_size: usize) -> Vec<Transaction>[src]

pub fn get_transactions_by_addresses(
    &self,
    addresses: HashSet<Address>,
    max_count: usize
) -> Vec<Arc<Transaction>>
[src]

Auto Trait Implementations

impl<'env> Send for Mempool<'env>

impl<'env> Sync for Mempool<'env>

impl<'env> Unpin for Mempool<'env>

impl<'env> !UnwindSafe for Mempool<'env>

impl<'env> !RefUnwindSafe for Mempool<'env>

Blanket Implementations

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T

impl<T> SafeBorrow<T> for T where
    T: ?Sized