public interface ExceptionHandler
DispatcherThread
.Modifier and Type | Method and Description |
---|---|
void |
thrown(DispatcherOp<?> op,
Object subscriber,
Throwable t,
Thread dt)
A throwable has been thrown when notifying a subscriber of a
dispatch operation.
|
void |
thrown(Runnable task,
Throwable t,
Thread dt)
A throwable has been thrown when running a task in a dispatcher
thread.
|
void |
thrown(Throwable t)
A throwable has been thrown in some other situation (e.g.,
creating a thread).
|
void thrown(Runnable task, Throwable t, Thread dt)
task
- the runnable, cannot be null
t
- the throwable, cannot be null
dt
- the dispatcher thread, cannot be null
void thrown(DispatcherOp<?> op, Object subscriber, Throwable t, Thread dt)
op
- the dispatch operation, cannot be null
subscriber
- the subscriber being notified, cannot be
null
t
- the throwable, cannot be null
dt
- the dispatcher thread, cannot be null
void thrown(Throwable t)
t
- the throwable, cannot be null
Copyright © 2015. All rights reserved.