[][src]Struct mediasoup::worker::Worker

pub struct Worker { /* fields omitted */ }

Implementations

impl Worker[src]

pub fn pid(&self) -> u32[src]

Worker process identifier (PID).

pub fn app_data(&self) -> &AppData[src]

App custom data.

pub async fn get_resource_usage<'_>(
    &'_ self
) -> Result<WorkerResourceUsage, RequestError>
[src]

Get mediasoup-worker process resource usage.

pub async fn update_settings<'_>(
    &'_ self,
    data: WorkerUpdateSettings
) -> Result<(), RequestError>
[src]

Update settings.

pub async fn create_router<'_>(
    &'_ self,
    router_options: RouterOptions
) -> Result<Router, CreateRouterError>
[src]

Create a Router.

Worker will be kept alive as long as at least one router instance is alive.

pub fn on_new_router<F: Fn(&Router) + Send + 'static>(
    &self,
    callback: F
) -> HandlerId<'static>
[src]

pub fn on_dead<F: FnOnce(ExitStatus) + Send + 'static>(
    &self,
    callback: F
) -> HandlerId<'static>
[src]

pub fn on_close<F: FnOnce() + Send + 'static>(
    &self,
    callback: F
) -> HandlerId<'static>
[src]

Trait Implementations

impl Clone for Worker[src]

Auto Trait Implementations

impl !RefUnwindSafe for Worker

impl Send for Worker

impl Sync for Worker

impl Unpin for Worker

impl !UnwindSafe for Worker

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,