Click or drag to resize
RiakClient.Commands.CRDT Namespace

[Missing <summary> documentation for "N:RiakClient.Commands.CRDT"]

Classes
  ClassDescription
Public classCounterResponse
Response to a FetchCounter or UpdateCounter command.
Public classDataTypeResponseTValue
Response to a Riak CRDT command.
Public classFetchCommandTResponse
Fetches a CRDT from Riak
Public classFetchCommandBuilderTBuilder, TCommand, TOptions, TResponse
Builds a fetch command.
Public classFetchCommandOptions
Represents options for a CRDT command that fetches data.
Public classFetchCounter
Fetches a Map from Riak
Public classFetchCounterBuilder
Builds a fetch command.
Public classFetchCounterOptions
Represents options for a FetchCounter operation.
Public classFetchHll
Fetches a Map from Riak
Public classFetchHllBuilder
Builds a fetch command.
Public classFetchHllOptions
Represents options for a FetchHll operation.
Public classFetchMap
Fetches a Map from Riak
Public classFetchMapBuilder
Builds a fetch command.
Public classFetchMapOptions
Represents options for a FetchMap operation.
Public classFetchSet
Fetches a Map from Riak
Public classFetchSetBuilder
Builds a fetch command.
Public classFetchSetOptions
Represents options for a FetchSet operation.
Public classHllResponse
Response to a FetchHll or UpdateHll command.
Public classMap
Public classMapCounter
Public classMapFlag
Public classMapMapOfTValue
Public classMapRegister
Public classMapSet
Public classMapResponse
Response to a FetchMap command.
Public classSetResponse
Response to a FetchSet command.
Public classUpdateCommandTResponse
Public classUpdateCommandBuilderTBuilder, TCommand, TOptions, TResponse
Builds a fetch command.
Public classUpdateCommandOptions
Public classUpdateCounter
Command used to update a Counter in Riak. As a convenience, a builder method is provided as well as an object with a fluent API for constructing the update. See UpdateCounterBuilder
var update = new UpdateCounter.Builder(10)
          .WithBucketType("maps")
          .WithBucket("myBucket")
          .WithKey("map_1")
          .WithReturnBody(true)
          .Build();
Public classUpdateCounterBuilder
Public classUpdateCounterOptions
Represents options for a UpdateCounter operation.
Public classUpdateHll
Command used to update a Hyperloglog in Riak. As a convenience, a builder method is provided as well as an object with a fluent API for constructing the update. See UpdateHllBuilder
var update = new UpdateHll.Builder()
          .WithBucketType("hlls")
          .WithBucket("myBucket")
          .WithKey("hll_1")
          .WithReturnBody(true)
          .Build();
Public classUpdateHllBuilder
Public classUpdateHllOptions
Represents options for a UpdateHll operation.
Public classUpdateMap
Command used to update a Map in Riak. As a convenience, a builder method is provided as well as an object with a fluent API for constructing the update. See UpdateMapMapOperation
var mapOp = new UpdateMap.MapOperation();
mapOp.IncrementCounter("counter_1", 50)
    .AddToSet("set_1", "set_value_1")
    .SetRegister("register_1", "register_value_1")
    .SetFlag("flag_1", true)
    .Map("inner_map")
        .IncrementCounter("counter_1", 50)
        .AddToSet("set_2", "set_value_2");
See UpdateMapBuilder
var update = new UpdateMap.Builder(mapOp)
          .WithBucketType("maps")
          .WithBucket("myBucket")
          .WithKey("map_1")
          .WithReturnBody(true)
          .Build();
Public classUpdateMapBuilder
Public classUpdateMapMapOperation
Public classUpdateMapOptions
Represents options for a UpdateMap operation.
Public classUpdateSet
Command used to update a Set in Riak. As a convenience, a builder method is provided as well as an object with a fluent API for constructing the update. See UpdateSetBuilder
var update = new UpdateSet.Builder()
          .WithBucketType("maps")
          .WithBucket("myBucket")
          .WithKey("map_1")
          .WithReturnBody(true)
          .Build();
Public classUpdateSetBuilder
Public classUpdateSetOptions
Represents options for a UpdateSet operation.