public interface Plugin
A plugin allows for additional functionality to be added to the Bugsnag SDK.
abstract Unit
load(Client client)
unload()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract Unit load(Client client)
Loads a plugin with the given Client. When this method is invoked the plugin should activate its behaviour - for example, by capturing an additional source of errors.
abstract Unit unload()
Unloads a plugin. When this is invoked the plugin should cease all custom behaviour and restore the application to its unloaded state.