public abstract static class EventQueue.FailureLoggingEvent extends Object implements EventQueue.Event
| Constructor and Description |
|---|
FailureLoggingEvent(org.slf4j.Logger log) |
| Modifier and Type | Method and Description |
|---|---|
void |
handleException(Throwable e)
Handle an exception that was either generated by running the event, or by the
event queue's inability to run the event.
|
String |
toString() |
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitrunpublic void handleException(Throwable e)
EventQueue.EventhandleException in interface EventQueue.Evente - The exception. This will be a TimeoutException if the event hit
its deadline before it could be scheduled.
It will be a RejectedExecutionException if the event could not be
scheduled because the event queue has already been closed.
Otherwise, it will be whatever exception was thrown by run().