-
public interface OutOfMemoryHandler
-
-
Method Summary
Modifier and Type Method Description abstract BooleanonOutOfMemory(OutOfMemoryError oom)Called when an OutOfMemoryErroris reported but before it is handled by Bugsnag.-
-
Method Detail
-
onOutOfMemory
abstract Boolean onOutOfMemory(OutOfMemoryError oom)
Called when an
OutOfMemoryErroris reported but before it is handled by Bugsnag. This can be used to either fully-process theOutOfMemoryErroron a safe path, or can attempt to free more memory to allow theOutOfMemoryErrorerror to be processed and reported (as a normal Event).
-
-
-
-