Skip to main content

ChildSpec

Struct ChildSpec 

Source
pub struct ChildSpec {
    pub name: String,
    pub function: u32,
    pub args: Vec<Value>,
    pub restart: RestartPolicy,
}
Expand description

A child the supervisor should start (and possibly restart).

function is an index into the runtime’s chunk — the same number super::runtime::Runtime::spawn takes. Args are cloned on every restart so a child always comes back with the original call.

Fields§

§name: String§function: u32§args: Vec<Value>§restart: RestartPolicy

Implementations§

Source§

impl ChildSpec

Source

pub fn new(name: impl Into<String>, function: u32) -> Self

Examples found in repository?
examples/crash_and_restart.rs (line 46)
15fn main() {
16    let rt = match Runtime::with_config(
17        samples::boom(),
18        RuntimeConfig {
19            workers: 1,
20            quantum: 1_000,
21        },
22    ) {
23        Ok(rt) => rt,
24        Err(e) => {
25            eprintln!("runtime: {e}");
26            std::process::exit(1);
27        }
28    };
29    let Some(boom) = rt.function_index("boom") else {
30        eprintln!("missing boom");
31        std::process::exit(1);
32    };
33    let sup = match Supervisor::with_config(
34        rt.spawner(),
35        SupervisorConfig {
36            max_restarts: 2,
37            max_period: Duration::from_secs(5),
38        },
39    ) {
40        Ok(s) => s,
41        Err(e) => {
42            eprintln!("supervisor: {e}");
43            std::process::exit(1);
44        }
45    };
46    if let Err(e) = sup.start_child(ChildSpec::new("boom", boom).restart(RestartPolicy::OnFailure))
47    {
48        eprintln!("start_child: {e}");
49        std::process::exit(1);
50    }
51
52    let start = std::time::Instant::now();
53    while !sup.intensity_exceeded() {
54        if start.elapsed() > Duration::from_secs(2) {
55            eprintln!("supervisor did not hit intensity in time");
56            std::process::exit(1);
57        }
58        thread::sleep(Duration::from_millis(5));
59    }
60
61    let metrics = rt.metrics();
62    println!("intensity exceeded after {} failures", metrics.processes_failed);
63    println!("{metrics}");
64    sup.shutdown();
65    rt.shutdown();
66}
Source

pub fn args(self, args: Vec<Value>) -> Self

Source

pub fn restart(self, restart: RestartPolicy) -> Self

Examples found in repository?
examples/crash_and_restart.rs (line 46)
15fn main() {
16    let rt = match Runtime::with_config(
17        samples::boom(),
18        RuntimeConfig {
19            workers: 1,
20            quantum: 1_000,
21        },
22    ) {
23        Ok(rt) => rt,
24        Err(e) => {
25            eprintln!("runtime: {e}");
26            std::process::exit(1);
27        }
28    };
29    let Some(boom) = rt.function_index("boom") else {
30        eprintln!("missing boom");
31        std::process::exit(1);
32    };
33    let sup = match Supervisor::with_config(
34        rt.spawner(),
35        SupervisorConfig {
36            max_restarts: 2,
37            max_period: Duration::from_secs(5),
38        },
39    ) {
40        Ok(s) => s,
41        Err(e) => {
42            eprintln!("supervisor: {e}");
43            std::process::exit(1);
44        }
45    };
46    if let Err(e) = sup.start_child(ChildSpec::new("boom", boom).restart(RestartPolicy::OnFailure))
47    {
48        eprintln!("start_child: {e}");
49        std::process::exit(1);
50    }
51
52    let start = std::time::Instant::now();
53    while !sup.intensity_exceeded() {
54        if start.elapsed() > Duration::from_secs(2) {
55            eprintln!("supervisor did not hit intensity in time");
56            std::process::exit(1);
57        }
58        thread::sleep(Duration::from_millis(5));
59    }
60
61    let metrics = rt.metrics();
62    println!("intensity exceeded after {} failures", metrics.processes_failed);
63    println!("{metrics}");
64    sup.shutdown();
65    rt.shutdown();
66}

Trait Implementations§

Source§

impl Clone for ChildSpec

Source§

fn clone(&self) -> ChildSpec

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChildSpec

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.