OnSessionCallback

fun interface OnSessionCallback

A callback to be run before sessions are sent to Bugsnag.

You can use this to add or modify information attached to a session before it is sent to your dashboard. You can also return false from any callback to halt execution.

Functions

Link copied to clipboard
abstract fun onSession(session: Session): Boolean

Runs the "on session" callback. If the callback returns false any further OnSessionCallback callbacks will not be called and the session will not be sent to Bugsnag.