Skip to content

Commit

Permalink
Update javadocs for resilience4j-bulkhead Bulkhead.java (ReactiveX#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishanthilina authored and RobWin committed May 24, 2019
1 parent f102a93 commit e17ced3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ public interface Bulkhead {
* Attempts to obtain a permission to execute a call.
* @deprecated Use {@link Bulkhead#tryAcquirePermission()} ()}. instead.
*
* @return {@code true} if a permission was acquired and {@code true} otherwise
* @return {@code true} if a permission was acquired and {@code false} otherwise
*/
@Deprecated
boolean isCallPermitted();

/**
* Acquires a permission to execute a call, only if one is available at the time of invocation.
*
* @return {@code true} if a permission was acquired and {@code true} otherwise
* @return {@code true} if a permission was acquired and {@code false} otherwise
*/
boolean tryAcquirePermission();

Expand Down

0 comments on commit e17ced3

Please sign in to comment.