Class ViewPingRequest
- java.lang.Object
-
- com.couchbase.client.core.msg.BaseRequest<ViewPingResponse>
-
- com.couchbase.client.core.msg.view.ViewPingRequest
-
- All Implemented Interfaces:
Encodable<com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest>,NonChunkedHttpRequest<ViewPingResponse>,Request<ViewPingResponse>,ScopedRequest,TargetedRequest
public class ViewPingRequest extends BaseRequest<ViewPingResponse> implements NonChunkedHttpRequest<ViewPingResponse>, TargetedRequest, ScopedRequest
-
-
Constructor Summary
Constructors Constructor Description ViewPingRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, String bucket, NodeIdentifier target)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbucket()ViewPingResponsedecode(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
-
ViewPingRequest
public ViewPingRequest(Duration timeout, CoreContext ctx, RetryStrategy retryStrategy, String bucket, NodeIdentifier target)
-
-
Method Detail
-
decode
public ViewPingResponse decode(com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpResponse response, HttpChannelContext context)
- Specified by:
decodein interfaceNonChunkedHttpRequest<ViewPingResponse>
-
encode
public com.couchbase.client.core.deps.io.netty.handler.codec.http.FullHttpRequest encode()
-
bucket
public String bucket()
- Specified by:
bucketin interfaceScopedRequest
-
serviceType
public ServiceType serviceType()
Description copied from interface:RequestThe service type of this request.- Specified by:
serviceTypein interfaceRequest<ViewPingResponse>- 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<ViewPingResponse>- 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<ViewPingResponse>- Overrides:
serviceContextin classBaseRequest<ViewPingResponse>- Returns:
- the service context.
-
-