pub trait IntoOrchestrator {
type SM: SessionManager;
// Required method
fn into_orchestrator(
self,
) -> Arc<<Self::SM as SessionManager>::Orchestrator>;
}Expand description
A helper trait for converting various types into an Orchestrator.
This exists to simplify BlockServer::new.