Get the global session manager Returns None if the global manager hasn't been initialized yet.
(&self)
| 118 | /// |
| 119 | /// Returns None if the global manager hasn't been initialized yet. |
| 120 | fn get_manager(&self) -> Option<Arc<SessionManager>> { |
| 121 | GLOBAL_SESSION_MANAGER.read().unwrap().clone() |
| 122 | } |
| 123 | |
| 124 | /// Get access to the underlying session manager |
| 125 | /// |
no test coverage detected