pub trait IComMtaThreadPoolKnobs_Impl: Sized {
    // Required methods
    fn MTASetMaxThreadCount(&self, dwmaxthreads: u32) -> Result<()>;
    fn MTAGetMaxThreadCount(&self) -> Result<u32>;
    fn MTASetThrottleValue(&self, dwthrottle: u32) -> Result<()>;
    fn MTAGetThrottleValue(&self) -> Result<u32>;
}

Required Methods§

fn MTASetMaxThreadCount(&self, dwmaxthreads: u32) -> Result<()>

fn MTAGetMaxThreadCount(&self) -> Result<u32>

fn MTASetThrottleValue(&self, dwthrottle: u32) -> Result<()>

fn MTAGetThrottleValue(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§