You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Beware of ExecutorService, using .submit(Runnable) won't call the UncaughtExceptionHandler. For the TCP ConnectionPool thread I wrap a Callable into a Runnable where the callable.call is done in a try-catch.
It should be checked that all threads have decent exception handling so not a single exception is swallowed.
The text was updated successfully, but these errors were encountered:
Beware of ExecutorService, using .submit(Runnable) won't call the UncaughtExceptionHandler. For the TCP ConnectionPool thread I wrap a Callable into a Runnable where the callable.call is done in a try-catch.
It should be checked that all threads have decent exception handling so not a single exception is swallowed.
The text was updated successfully, but these errors were encountered: