Click or drag to resize
IRiakBatchClientDelete Method (IEnumerableRiakObjectId, RiakDeleteOptions)

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
IEnumerable<RiakResult> Delete(
	IEnumerable<RiakObjectId> objectIds,
	RiakDeleteOptions options = null
)

Parameters

objectIds
Type: System.Collections.GenericIEnumerableRiakObjectId
A IEnumerableT of RiakObjectIds to delete.
options (Optional)
Type: RiakClient.ModelsRiakDeleteOptions
The RiakDeleteOptions responsible for configuring the semantics of this delete request. These options will override any previously defined bucket configuration properties.

Return Value

Type: IEnumerableRiakResult
An IEnumerableT of RiakResult, one for each individual delete operation. You should verify the success or failure of each result separately.
See Also