Package com.couchbase.client.core.msg
Interface Response
-
- All Known Subinterfaces:
ChunkedResponse<H,R,T>
- All Known Implementing Classes:
AnalyticsResponse,AppendResponse,BaseResponse,BucketConfigResponse,BucketConfigStreamingResponse,CarrierBucketConfigResponse,CarrierGlobalConfigResponse,CoreHttpResponse,DecrementResponse,GenericManagerResponse,GetAndLockResponse,GetAndTouchResponse,GetCollectionIdResponse,GetCollectionManifestResponse,GetMetaResponse,GetResponse,IncrementResponse,InsertResponse,KvPingResponse,MultiObserveViaCasResponse,NoopResponse,ObserveViaCasResponse,ObserveViaSeqnoResponse,PrependResponse,QueryResponse,RemoveResponse,ReplaceResponse,SearchResponse,SubdocGetResponse,SubdocMutateResponse,TouchResponse,UnlockResponse,UpsertResponse,ViewResponse
public interface ResponseThis interface is the base entity for all Responses flowing through the client.- Since:
- 2.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseStatusstatus()Holds the status of the response.
-
-
-
Method Detail
-
status
ResponseStatus status()
Holds the status of the response.Note that it might indicate a successful response or an error of some other sorts. Please see the enum for further description of the potential states it can be in.
- Returns:
- the status for this response.
-
-