Fix return of RetryListener.open() in README

This commit is contained in:
hoonti06
2023-11-16 22:45:34 +09:00
committed by GitHub
parent d01f25b268
commit 3a8201298a

View File

@@ -348,7 +348,7 @@ The following listing shows the `RetryListener` interface:
```java
public interface RetryListener {
void open(RetryContext context, RetryCallback<T> callback);
boolean open(RetryContext context, RetryCallback<T> callback);
void onSuccess(RetryContext context, T result);