@@ -714,7 +714,12 @@ use futures_util::{dummy_waker, OptionalSelector, Selector, SelectorOutput};
714
714
///
715
715
/// let mobile_interruptable_platform = false;
716
716
///
717
- /// let handle = tokio::spawn(async move {
717
+ #[ cfg_attr( feature = "std" , doc = " let handle = tokio::spawn(async move {" ) ]
718
+ #[ cfg_attr(
719
+ not( feature = "std" ) ,
720
+ doc = " let rt = tokio::runtime::Builder::new_current_thread().build().unwrap();"
721
+ ) ]
722
+ #[ cfg_attr( not( feature = "std" ) , doc = " rt.block_on(async move {" ) ]
718
723
/// process_events_async(
719
724
/// background_persister,
720
725
/// |e| background_event_handler.handle_event(e),
@@ -736,7 +741,7 @@ use futures_util::{dummy_waker, OptionalSelector, Selector, SelectorOutput};
736
741
///
737
742
/// // Stop the background processing.
738
743
/// stop_sender.send(()).unwrap();
739
- /// handle.await.unwrap();
744
+ # [ cfg_attr ( feature = "std" , doc = " handle.await.unwrap()" ) ]
740
745
/// # }
741
746
///```
742
747
#[ cfg( feature = "futures" ) ]
@@ -761,7 +766,7 @@ pub async fn process_events_async<
761
766
PGS : ' static + Deref < Target = P2PGossipSync < G , UL , L > > + Send + Sync ,
762
767
RGS : ' static + Deref < Target = RapidGossipSync < G , L > > + Send ,
763
768
PM : ' static + Deref + Send + Sync ,
764
- LM : ' static + Deref + Send + Sync ,
769
+ LM : ' static + Deref ,
765
770
S : ' static + Deref < Target = SC > + Send + Sync ,
766
771
SC : for < ' b > WriteableScore < ' b > ,
767
772
SleepFuture : core:: future:: Future < Output = bool > + core:: marker:: Unpin ,
@@ -784,7 +789,7 @@ where
784
789
CM :: Target : AChannelManager + Send + Sync ,
785
790
OM :: Target : AOnionMessenger + Send + Sync ,
786
791
PM :: Target : APeerManager + Send + Sync ,
787
- LM :: Target : ALiquidityManager + Send + Sync ,
792
+ LM :: Target : ALiquidityManager ,
788
793
{
789
794
let mut should_break = false ;
790
795
let async_event_handler = |event| {
0 commit comments