RiakClient.Commands.CRDT Namespace |
[Missing <summary> documentation for "N:RiakClient.Commands.CRDT"]
Class | Description | |
---|---|---|
![]() | CounterResponse |
Response to a FetchCounter or UpdateCounter command.
|
![]() | DataTypeResponseTValue |
Response to a Riak CRDT command.
|
![]() | FetchCommandTResponse |
Fetches a CRDT from Riak
|
![]() | FetchCommandBuilderTBuilder, TCommand, TOptions, TResponse |
Builds a fetch command.
|
![]() | FetchCommandOptions |
Represents options for a CRDT command that fetches data.
|
![]() | FetchCounter |
Fetches a Map from Riak
|
![]() | FetchCounterBuilder |
Builds a fetch command.
|
![]() | FetchCounterOptions |
Represents options for a FetchCounter operation.
|
![]() | FetchHll |
Fetches a Map from Riak
|
![]() | FetchHllBuilder |
Builds a fetch command.
|
![]() | FetchHllOptions |
Represents options for a FetchHll operation.
|
![]() | FetchMap |
Fetches a Map from Riak
|
![]() | FetchMapBuilder |
Builds a fetch command.
|
![]() | FetchMapOptions |
Represents options for a FetchMap operation.
|
![]() | FetchSet |
Fetches a Map from Riak
|
![]() | FetchSetBuilder |
Builds a fetch command.
|
![]() | FetchSetOptions |
Represents options for a FetchSet operation.
|
![]() | HllResponse | |
![]() | Map | |
![]() | MapCounter | |
![]() | MapFlag | |
![]() | MapMapOfTValue | |
![]() | MapRegister | |
![]() | MapSet | |
![]() | MapResponse |
Response to a FetchMap command.
|
![]() | SetResponse |
Response to a FetchSet command.
|
![]() | UpdateCommandTResponse | |
![]() | UpdateCommandBuilderTBuilder, TCommand, TOptions, TResponse |
Builds a fetch command.
|
![]() | UpdateCommandOptions |
Represents options for a UpdateCommandTResponse operation.
|
![]() | UpdateCounter |
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(); |
![]() | UpdateCounterBuilder | |
![]() | UpdateCounterOptions |
Represents options for a UpdateCounter operation.
|
![]() | UpdateHll |
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(); |
![]() | UpdateHllBuilder | |
![]() | UpdateHllOptions |
Represents options for a UpdateHll operation.
|
![]() | UpdateMap |
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"); var update = new UpdateMap.Builder(mapOp) .WithBucketType("maps") .WithBucket("myBucket") .WithKey("map_1") .WithReturnBody(true) .Build(); |
![]() | UpdateMapBuilder | |
![]() | UpdateMapMapOperation | |
![]() | UpdateMapOptions |
Represents options for a UpdateMap operation.
|
![]() | UpdateSet |
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(); |
![]() | UpdateSetBuilder | |
![]() | UpdateSetOptions |
Represents options for a UpdateSet operation.
|