[][src]Struct tari_service_framework::ServiceInitializerContext

pub struct ServiceInitializerContext { /* fields omitted */ }

Contains context for service initialization.

ServiceInitializerContext also implements Future and resolves to ServiceHandles once it is signaled to do so.

Implementations

impl ServiceInitializerContext[src]

pub fn register_handle<H>(&self, handle: H) where
    H: Any + Send + Sync
[src]

Insert a service handle with the given name

pub fn lazy_service<F, S>(&self, service_fn: F) -> LazyService<F, Self, S> where
    F: FnOnce(ServiceHandles) -> S, 
[src]

Call the given function with the final handles once this future is ready (notify_ready is called).

pub fn spawn_when_ready<F, Fut>(self, f: F) -> JoinHandle<Fut::Output> where
    F: FnOnce(ServiceHandles) -> Fut + Send + 'static,
    Fut: Future + Send + 'static,
    Fut::Output: Send
[src]

Spawn a task once handles are ready. The resolved handles are passed into this closure.

pub fn spawn_until_shutdown<F, Fut>(
    self,
    f: F
) -> JoinHandle<Option<Fut::Output>> where
    F: FnOnce(ServiceHandles) -> Fut + Send + 'static,
    Fut: Future + Send + 'static,
    Fut::Output: Send + 'static, 
[src]

Spawn a task once handles are ready. The resolved handles are passed into this closure. The future returned from the closure is polled on a new task until the shutdown signal is triggered.

pub async fn wait_ready(self) -> ServiceHandles[src]

Wait until the service handle are ready and return them when they are.

pub fn get_shutdown_signal(&self) -> ShutdownSignal[src]

Returns the shutdown signal for this stack

pub fn into_inner(self) -> ServiceHandles[src]

Trait Implementations

impl Clone for ServiceInitializerContext[src]

Auto Trait Implementations

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.