Create a connection for a new session
(&self, session_id: Uuid)
| 460 | |
| 461 | /// Create a connection for a new session |
| 462 | pub async fn create_session_connection(&self, session_id: Uuid) -> Result<(), PgSqliteError> { |
| 463 | self.connection_manager.create_connection(session_id) |
| 464 | } |
| 465 | |
| 466 | /// Remove a session's connection |
| 467 | pub fn remove_session_connection(&self, session_id: &Uuid) { |