Glide
Glide
/
com.bumptech.glide.load.engine.executor
/
GlideExecutor
/
UncaughtThrowableStrategy
Uncaught
Throwable
Strategy
interface
UncaughtThrowableStrategy
Content copied to clipboard
A strategy for handling unexpected and uncaught
Throwable
s thrown by futures run on the pool.
Functions
Properties
Functions
handle
Link copied to clipboard
abstract
fun
handle
(
t
:
Throwable
)
Content copied to clipboard
Properties
DEFAULT
Link copied to clipboard
val
DEFAULT
:
GlideExecutor.UncaughtThrowableStrategy
Content copied to clipboard
The default strategy, currently
LOG
.
IGNORE
Link copied to clipboard
val
IGNORE
:
GlideExecutor.UncaughtThrowableStrategy
Content copied to clipboard
Silently catches and ignores the uncaught
Throwable
s.
LOG
Link copied to clipboard
val
LOG
:
GlideExecutor.UncaughtThrowableStrategy
Content copied to clipboard
Logs the uncaught
Throwable
s using
TAG
and Log.
THROW
Link copied to clipboard
val
THROW
:
GlideExecutor.UncaughtThrowableStrategy
Content copied to clipboard
Rethrows the uncaught
Throwable
s to crash the app.