type SessionFactory = Box<dyn Fn(&RpcAuthentication) -> Arc<dyn Object> + Send + Sync>;
A function we use to construct Session objects in response to authentication.
struct SessionFactory(/* private fields */);