Skip to main content

pre_build_inner

Function pre_build_inner 

Source
async fn pre_build_inner<Chain, Graph, Net, Ct>(
    configured: HoprBuilderConfigured<Chain, Graph, Net, Ct>,
    session_tx: Sender<IncomingSession>,
    processes: AbortableList<HoprLibProcess>,
) -> Result<PreHopr<Chain, Graph, Net, Ct>, HoprLibError>
where Chain: HoprChainApi + Clone + Send + Sync + 'static, Graph: HoprGraphApi<HoprNodeId = OffchainPublicKey> + Clone + Send + Sync + 'static, <Graph as NetworkGraphTraverse>::Observed: EdgeObservableRead + Send + 'static, <Graph as NetworkGraphWrite>::Observed: EdgeObservableWrite + Send, Net: NetworkView + NetworkStreamControl + Send + Sync + Clone + 'static, Ct: ProbingTrafficGeneration + CoverTrafficGeneration + Send + Sync + 'static,