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
The @Bulkhead annotation should itself configure whether semaphore isolation or "threadpool" isolation should be used. We can easily do that by changing the default value of waitingTaskQueue to 0 (where 0 means semaphore isolation), and whenever user configures it to > 0, "threadpool" isolation (which is in fact just an additional queue) is used.
The text was updated successfully, but these errors were encountered:
The
@Bulkhead
annotation should itself configure whether semaphore isolation or "threadpool" isolation should be used. We can easily do that by changing the default value ofwaitingTaskQueue
to 0 (where 0 means semaphore isolation), and whenever user configures it to > 0, "threadpool" isolation (which is in fact just an additional queue) is used.The text was updated successfully, but these errors were encountered: