Async connection management

This commit is contained in:
Gregory Schier
2024-02-05 11:29:27 -08:00
parent a7f2a86d71
commit ef7f942a8f
9 changed files with 102 additions and 84 deletions

View File

@@ -29,7 +29,7 @@ pub struct MethodDefinition {
pub server_streaming: bool,
}
pub async fn callable(uri: &Uri) -> Vec<ServiceDefinition> {
pub async fn reflect(uri: &Uri) -> Vec<ServiceDefinition> {
let (pool, _) = fill_pool(uri).await;
pool.services()