Interface GlideExecutor.UncaughtThrowableStrategy
-
- Enclosing class:
- GlideExecutor
public static interface GlideExecutor.UncaughtThrowableStrategyA strategy for handling unexpected and uncaughtThrowables thrown by futures run on the pool.
-
-
Field Summary
Fields Modifier and Type Field Description static GlideExecutor.UncaughtThrowableStrategyDEFAULTThe default strategy, currentlyLOG.static GlideExecutor.UncaughtThrowableStrategyIGNORESilently catches and ignores the uncaughtThrowables.static GlideExecutor.UncaughtThrowableStrategyLOGstatic GlideExecutor.UncaughtThrowableStrategyTHROWRethrows the uncaughtThrowables to crash the app.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(java.lang.Throwable t)
-
-
-
Field Detail
-
IGNORE
static final GlideExecutor.UncaughtThrowableStrategy IGNORE
Silently catches and ignores the uncaughtThrowables.
-
LOG
static final GlideExecutor.UncaughtThrowableStrategy LOG
-
THROW
static final GlideExecutor.UncaughtThrowableStrategy THROW
Rethrows the uncaughtThrowables to crash the app.
-
DEFAULT
static final GlideExecutor.UncaughtThrowableStrategy DEFAULT
The default strategy, currentlyLOG.
-
-