Class AnalyticsPingRequest
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseRequest<AnalyticsPingResponse>
-
- com.couchbase.client.core.msg.analytics.AnalyticsPingRequest
-
- All Implemented Interfaces:
Encodable<com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest>,NonChunkedHttpRequest<AnalyticsPingResponse>,Request<AnalyticsPingResponse>,TargetedRequest
public class AnalyticsPingRequest extends BaseRequest<AnalyticsPingResponse> implements NonChunkedHttpRequest<AnalyticsPingResponse>, TargetedRequest
-
-
Constructor Summary
Constructors Constructor Description AnalyticsPingRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, NodeIdentifier target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnalyticsPingResponsedecode(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext context)com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequestencode()booleanidempotent()Returns if the given request is idempotent or not.Map<String,Object>serviceContext()Returns contextual information for each individual service.ServiceTypeserviceType()The service type of this request.NodeIdentifiertarget()The target where this request must be dispatched to.-
Methods inherited from class com.couchbase.client.core.msg.BaseRequest
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.couchbase.client.core.msg.Request
absoluteTimeout, cancel, cancellationReason, cancelled, completed, context, createdAt, fail, failed, id, internalSpan, operationId, response, retryStrategy, succeed, succeeded, timeout, timeoutElapsed
-
-
-
-
Constructor Detail
-
AnalyticsPingRequest
public AnalyticsPingRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, NodeIdentifier target)
-
-
Method Detail
-
decode
public AnalyticsPingResponse decode(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext context)
- Specified by:
decodein interfaceNonChunkedHttpRequest<AnalyticsPingResponse>
-
encode
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode()
-
serviceType
public ServiceType serviceType()
Description copied from interface:RequestThe service type of this request.- Specified by:
serviceTypein interfaceRequest<AnalyticsPingResponse>- Returns:
- the service type for this request.
-
target
public NodeIdentifier target()
Description copied from interface:TargetedRequestThe target where this request must be dispatched to.- Specified by:
targetin interfaceTargetedRequest
-
idempotent
public boolean idempotent()
Description copied from interface:RequestReturns if the given request is idempotent or not.By default, this method always returns false for data consistency reasons. Only specific idempotent operations should override this default since it impacts retry handling quite a bit. DO NOT SET THIS TO TRUE ON MUTATING OPERATIONS!
- Specified by:
idempotentin interfaceRequest<AnalyticsPingResponse>- Returns:
- true if idempotent.
-
serviceContext
public Map<String,Object> serviceContext()
Description copied from interface:RequestReturns contextual information for each individual service.- Specified by:
serviceContextin interfaceRequest<AnalyticsPingResponse>- Overrides:
serviceContextin classBaseRequest<AnalyticsPingResponse>- Returns:
- the service context.
-
-