Class RawManager
java.lang.Object
com.couchbase.client.java.manager.raw.RawManager
This class provides direct access to the various management APIs in a raw (uncommitted) form.
 
Please note that the results of the individual methods can vary greatly between server versions. This API should only be used if you know what you ask for and it is not covered by the official, high level management APIs already.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic reactor.core.publisher.Mono<RawManagerResponse> call(Cluster cluster, RawManagerRequest request) Performs aRawManagerRequestwith default options against the given cluster.static reactor.core.publisher.Mono<RawManagerResponse> call(Cluster cluster, RawManagerRequest request, RawManagerOptions options) Performs aRawManagerRequestwith custom options against the given cluster.
- 
Constructor Details- 
RawManagerpublic RawManager()
 
- 
- 
Method Details- 
callpublic static reactor.core.publisher.Mono<RawManagerResponse> call(Cluster cluster, RawManagerRequest request) Performs aRawManagerRequestwith default options against the given cluster.- Parameters:
- cluster- the cluster to query against.
- request- the request to dispatch.
- Returns:
- a Mono eventually containing the response when it arrives.
 
- 
callpublic static reactor.core.publisher.Mono<RawManagerResponse> call(Cluster cluster, RawManagerRequest request, RawManagerOptions options) Performs aRawManagerRequestwith custom options against the given cluster.- Parameters:
- cluster- the cluster to query against.
- request- the request to dispatch.
- options- the custom options to use.
- Returns:
- a Mono eventually containing the response when it arrives.
 
 
-