RiakClientDtFetchMap Method (String, String, String, RiakDtFetchOptions) |
Note: This API is now obsolete.
Fetch a Map Data Type object at the provided address.
Namespace:
RiakClient
Assembly:
RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax [ObsoleteAttribute("RiakDt is deprecated. Please use Commands/CRDT namespace.")]
public RiakDtMapResult DtFetchMap(
string bucket,
string key,
string bucketType = null,
RiakDtFetchOptions options = null
)
[<ObsoleteAttribute("RiakDt is deprecated. Please use Commands/CRDT namespace.")>]
abstract DtFetchMap :
bucket : string *
key : string *
?bucketType : string *
?options : RiakDtFetchOptions
(* Defaults:
let _bucketType = defaultArg bucketType null
let _options = defaultArg options null
*)
-> RiakDtMapResult
[<ObsoleteAttribute("RiakDt is deprecated. Please use Commands/CRDT namespace.")>]
override DtFetchMap :
bucket : string *
key : string *
?bucketType : string *
?options : RiakDtFetchOptions
(* Defaults:
let _bucketType = defaultArg bucketType null
let _options = defaultArg options null
*)
-> RiakDtMapResult
Parameters
- bucket
- Type: SystemString
The name of the bucket containing the key. - key
- Type: SystemString
The key of the data type object. - bucketType (Optional)
- Type: SystemString
The name of the bucket type containing the bucket. - options (Optional)
- Type: RiakClient.ModelsRiakDtFetchOptions
The RiakDtFetchOptions responsible for configuring the semantics of this data type fetch request.
Return Value
Type:
RiakDtMapResultA
RiakDtMapResult detailing the operation result, current context, and map values.
Implements
IRiakBatchClientDtFetchMap(String, String, String, RiakDtFetchOptions)See Also