[][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 get_handle<H>(&self) -> Option<&H> where
    H: 'static, 
[src]

Retrieve a handle and downcast it to return type and return a copy, otherwise None is returned

pub fn expect_handle<H>(&self) -> H where
    H: Clone + 'static, 
[src]

Get a handle from the given type (TypeId) and downcast it to a type H. If the item does not exist or the downcast fails, a panic occurs

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<Output = ()> + Send + 'static, 
[src]

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

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.