Number of sessions with active shapes.
(&self)
| 182 | |
| 183 | /// Number of sessions with active shapes. |
| 184 | pub fn active_sessions(&self) -> usize { |
| 185 | let sessions = |
| 186 | crate::control::lock_utils::read_or_recover(self.sessions.read(), "shape_sessions"); |
| 187 | sessions.len() |
| 188 | } |
| 189 | |
| 190 | /// Evaluate an array op against all active shapes. |
| 191 | /// |
nothing calls this directly
no test coverage detected