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
Removed *Ext collections that used reflection as it was causing probl…
…ems with JDK17 (at least on github ubuntu runners). There are now B* collections anyway that do the same more reliably.
Changed RetryAndRateLimitService: if it is interrupted during the shu…
…tdown process it will still try to terminate all the child threads (via finally block)
Added RunnableWithExceptionType and a bunch of other *WithExceptionTy…
…pe functional interfaces that allow throwing a specific exception in their method (can be checked or unchecked). The idea is to allow for a better exception-control when executing code blocks, so that stuff isn't declared as 'throws Exception'