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 nullt - the throwable, cannot be nulldt - the dispatcher thread, cannot be nullvoid thrown(DispatcherOp<?> op, Object subscriber, Throwable t, Thread dt)
op - the dispatch operation, cannot be nullsubscriber - the subscriber being notified, cannot be
nullt - the throwable, cannot be nulldt - the dispatcher thread, cannot be nullvoid thrown(Throwable t)
t - the throwable, cannot be nullCopyright © 2015. All rights reserved.