| Package | Description |
|---|---|
| tech.ydb.table |
| Modifier and Type | Method and Description |
|---|---|
SessionRetryContext |
SessionRetryContext.Builder.build() |
| Modifier and Type | Method and Description |
|---|---|
default void |
SessionRetryHandler.onCancel(SessionRetryContext context,
int retryNumber,
long millis)
Called on async operation cancellation.
|
default void |
SessionRetryHandler.onError(SessionRetryContext context,
StatusCode code,
int retryNumber,
long millis)
Called on non-retryable error.
|
default void |
SessionRetryHandler.onError(SessionRetryContext context,
Throwable issue,
int retryNumber,
long millis)
Called on non-retryable error as Java exception.
|
default void |
SessionRetryHandler.onLimit(SessionRetryContext context,
StatusCode code,
int retryLimit,
long millis)
Called on retryable error when the limit is reached.
|
default void |
SessionRetryHandler.onRetry(SessionRetryContext context,
StatusCode code,
int retryNumber,
long next,
long millis)
Called on retryable status code.
|
default void |
SessionRetryHandler.onRetry(SessionRetryContext context,
Throwable issue,
int retryNumber,
long next,
long millis)
Called on retryable exception.
|
default void |
SessionRetryHandler.onSuccess(SessionRetryContext context,
int retryNumber,
long millis)
Called on operation success.
|
Copyright © 2024. All rights reserved.