* Captures a session.
(session: Session)
| 377 | * Captures a session. |
| 378 | */ |
| 379 | public captureSession(session: Session): void { |
| 380 | this.sendSession(session); |
| 381 | // After sending, we set init false to indicate it's not the first occurrence |
| 382 | updateSession(session, { init: false }); |
| 383 | } |
| 384 | |
| 385 | /** |
| 386 | * Create a cron monitor check in and send it to Sentry. This method is not available on all clients. |
no test coverage detected