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

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.