From 862453174dc15e5184a4f86bb14f203ccef94de6 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 19 Sep 2023 20:37:28 +0200 Subject: docs: add examples to DI container & related functions --- .../asynchronous/binding/scope_configurator.rs | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) (limited to 'src/di_container/asynchronous/binding/scope_configurator.rs') diff --git a/src/di_container/asynchronous/binding/scope_configurator.rs b/src/di_container/asynchronous/binding/scope_configurator.rs index f079234..b63e644 100644 --- a/src/di_container/asynchronous/binding/scope_configurator.rs +++ b/src/di_container/asynchronous/binding/scope_configurator.rs @@ -47,6 +47,36 @@ where /// Configures the binding to be in a transient scope. /// /// This is the default. + /// + /// # Examples + /// ``` + /// # use syrette::{AsyncDIContainer, injectable}; + /// # + /// # struct Authenticator {} + /// # + /// # #[injectable(async = true)] + /// # impl Authenticator + /// # { + /// # fn new() -> Self + /// # { + /// # Self {} + /// # } + /// # } + /// # + /// # #[tokio::main] + /// # async fn main() -> Result<(), Box> { + /// let mut di_container = AsyncDIContainer::new(); + /// + /// di_container + /// .bind::() + /// .to::() + /// .await? + /// .in_transient_scope() + /// .await; + /// # + /// # Ok(()) + /// # } + /// ``` pub async fn in_transient_scope( self, ) -> AsyncBindingWhenConfigurator<'di_container, Interface> @@ -60,6 +90,67 @@ where /// /// # Errors /// Will return Err if resolving the implementation fails. + /// + /// # Examples + /// ``` + /// # use std::sync::atomic::{AtomicBool, Ordering}; + /// # use syrette::{AsyncDIContainer, injectable}; + /// # + /// # struct AudioManager + /// # { + /// # is_sound_playing: AtomicBool + /// # } + /// # + /// # #[injectable(async = true)] + /// # impl AudioManager + /// # { + /// # fn new() -> Self + /// # { + /// # Self { is_sound_playing: AtomicBool::new(false) } + /// # } + /// # + /// # fn play_long_sound(&self) + /// # { + /// # self.is_sound_playing.store(true, Ordering::Relaxed); + /// # } + /// # + /// # fn is_sound_playing(&self) -> bool + /// # { + /// # self.is_sound_playing.load(Ordering::Relaxed) + /// # } + /// # + /// # } + /// # + /// # #[tokio::main] + /// # async fn main() -> Result<(), Box> { + /// let mut di_container = AsyncDIContainer::new(); + /// + /// di_container + /// .bind::() + /// .to::() + /// .await? + /// .in_singleton_scope() + /// .await; + /// + /// { + /// let audio_manager = di_container + /// .get::() + /// .await? + /// .threadsafe_singleton()?; + /// + /// audio_manager.play_long_sound(); + /// } + /// + /// let audio_manager = di_container + /// .get::() + /// .await? + /// .threadsafe_singleton()?; + /// + /// assert!(audio_manager.is_sound_playing()); + /// # + /// # Ok(()) + /// # } + /// ``` pub async fn in_singleton_scope( self, ) -> Result< -- cgit v1.2.3-18-g5258