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
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,8 @@ You can register retry listeners and configuration on an `AsyncCallExecutor` in
457
457
synchronous `CallExecutor`. All calls in all threads that are triggered from an `AsyncCallExecutor` after its
458
458
construction will use the same listeners and configuration.
459
459
460
+
It's important to note that a Java `ExecutorService` will not shut down automatically when there is no additional work to do. It will hang onto threads indefinitely until you shut it down. If you need a reference to the `ExecutorService` being used by you instance of `AsyncCallExecutor` you can use the `getThreadExecutorService()` method and then call `shutdown()` or `shutdownNow()`.
461
+
460
462
All of this async and threading functionality is new as of `0.9.0` and may need some time to settle before it is
0 commit comments