Package com.couchbase.client.core.msg
Class CancellationReason
java.lang.Object
com.couchbase.client.core.msg.CancellationReason
Describes the reason why a
Request
has been cancelled.- Since:
- 2.0.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final CancellationReason
The user or some other code proactively cancelled the request by cancelling it through its attached context.static final CancellationReason
For a different reason.static final CancellationReason
The server reported that it cancelled the request.static final CancellationReason
The SDK has been shut down already when this request is dispatched.static final CancellationReason
The downstream consumer stopped listening for a result and therefore any further processing is a waste of resources.static final CancellationReason
When aTargetedRequest
is dispatched but the list of nodes does not contain the target at all, there is good chance that this request will not be able to make progress anymore so it will be cancelled.static final CancellationReason
The request ran into a timeout and is therefore cancelled before it got a chance to complete.static final CancellationReason
If too many outstanding requests are waiting to be completed. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
hashCode()
Returns the identifier for this reason.If applicable, returns an inner reason for the cancellation for additional context.static CancellationReason
noMoreRetries
(RetryReason retryReason) This cancellation reason indicates that no more retries were allowed based on the retry strategy.toString()
-
Field Details
-
STOPPED_LISTENING
The downstream consumer stopped listening for a result and therefore any further processing is a waste of resources. -
TIMEOUT
The request ran into a timeout and is therefore cancelled before it got a chance to complete. -
CANCELLED_VIA_CONTEXT
The user or some other code proactively cancelled the request by cancelling it through its attached context. -
SHUTDOWN
The SDK has been shut down already when this request is dispatched. -
OTHER
For a different reason. Make sure to emit an event so that debugging provides further context. -
TOO_MANY_REQUESTS_IN_RETRY
If too many outstanding requests are waiting to be completed. This is the SDK backpressure signal. -
TARGET_NODE_REMOVED
When aTargetedRequest
is dispatched but the list of nodes does not contain the target at all, there is good chance that this request will not be able to make progress anymore so it will be cancelled.Request creators are advised to grab a fresh config, a new target, and re-dispatch the operation to give it a chance to make progress eventually.
-
SERVER_CANCELLED
The server reported that it cancelled the request.
-
-
Method Details
-
noMoreRetries
This cancellation reason indicates that no more retries were allowed based on the retry strategy.- Parameters:
retryReason
- the retry reason why it got sent into retry.- Returns:
- the cancellation reason instance.
-
innerReason
If applicable, returns an inner reason for the cancellation for additional context. -
identifier
Returns the identifier for this reason. -
toString
-
equals
-
hashCode
public int hashCode()
-