[−][src]Struct tokio::runtime::Builder
Builds Tokio Runtime with custom configuration values.
Methods can be chained in order to set the configuration values. The
Runtime is constructed by calling build
.
New instances of Builder
are obtained via Builder::new
.
See function level documentation for details on the various configuration settings.
Examples
// create and configure ThreadPool let mut threadpool_builder = tokio_threadpool::Builder::new(); threadpool_builder .name_prefix("my-runtime-worker-") .pool_size(4); // build Runtime let runtime = Builder::new() .threadpool_builder(threadpool_builder) .build(); // ... call runtime.run(...)
Methods
impl Builder
[src]
impl Builder
pub fn new() -> Builder
[src]
pub fn new() -> Builder
Returns a new runtime builder initialized with default configuration values.
Configuration methods can be chained on the return value.
ⓘImportant traits for &'a mut Wpub fn clock(&mut self, clock: Clock) -> &mut Self
[src]
pub fn clock(&mut self, clock: Clock) -> &mut Self
Set the Clock
instance that will be used by the runtime.
ⓘImportant traits for &'a mut Wpub fn core_threads(&mut self, val: usize) -> &mut Self
[src]
pub fn core_threads(&mut self, val: usize) -> &mut Self
Set the maximum number of worker threads for the Runtime
's thread pool.
This must be a number between 1 and 32,768 though it is advised to keep this value on the smaller side.
The default value is the number of cores available to the system.
Examples
let mut rt = runtime::Builder::new() .core_threads(4) .build() .unwrap();
ⓘImportant traits for &'a mut Wpub fn blocking_threads(&mut self, val: usize) -> &mut Self
[src]
pub fn blocking_threads(&mut self, val: usize) -> &mut Self
Set the maximum number of concurrent blocking sections in the Runtime
's
thread pool.
When the maximum concurrent blocking
calls is reached, any further
calls to blocking
will return NotReady
and the task is notified once
previously in-flight calls to blocking
return.
This must be a number between 1 and 32,768 though it is advised to keep this value on the smaller side.
The default value is 100.
Examples
let mut rt = runtime::Builder::new() .blocking_threads(200) .build();
ⓘImportant traits for &'a mut Wpub fn name_prefix<S: Into<String>>(&mut self, val: S) -> &mut Self
[src]
pub fn name_prefix<S: Into<String>>(&mut self, val: S) -> &mut Self
Set name prefix of threads spawned by the Runtime
's thread pool.
Thread name prefix is used for generating thread names. For example, if
prefix is my-pool-
, then threads in the pool will get names like
my-pool-1
etc.
The default prefix is "tokio-runtime-worker-".
Examples
let mut rt = runtime::Builder::new() .name_prefix("my-pool-") .build();
ⓘImportant traits for &'a mut Wpub fn stack_size(&mut self, val: usize) -> &mut Self
[src]
pub fn stack_size(&mut self, val: usize) -> &mut Self
Set the stack size (in bytes) for worker threads.
The actual stack size may be greater than this value if the platform specifies minimal stack size.
The default stack size for spawned threads is 2 MiB, though this particular stack size is subject to change in the future.
Examples
let mut rt = runtime::Builder::new() .stack_size(32 * 1024) .build();
pub fn build(&mut self) -> Result<Runtime>
[src]
pub fn build(&mut self) -> Result<Runtime>
Create the configured Runtime
.
The returned ThreadPool
instance is ready to spawn tasks.
Examples
let runtime = Builder::new().build().unwrap(); // ... call runtime.run(...)
Trait Implementations
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Wfn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> Erased for T
[src]
impl<T> Erased for T