Get the user session from session provider
(&self)
| 125 | |
| 126 | /// Get the user session from session provider |
| 127 | pub fn get_session(&self) -> Option<Arc<std::sync::RwLock<UserSession>>> { |
| 128 | self.session_provider |
| 129 | .as_ref()? |
| 130 | .get_session(&self.session_id) |
| 131 | } |
| 132 | |
| 133 | /// Get a variable value, checking session parameters first, then local variables |
| 134 | pub fn get_variable(&self, name: &str) -> Option<Value> { |
no outgoing calls
no test coverage detected