Trait zircon::ZirconApp [] [src]

pub trait ZirconApp: Send + Sync + 'static {
    fn num_accept_threads(&self) -> usize;
fn num_cpu_threads(&self) -> usize;
fn cpu_pool(&self) -> &CpuPool; }

Required Methods

Returns the number of accept threads.

Returns the number of cpu threads.

Returns the internal cpu pool (not for accept threads).

Implementors