Click or drag to resize
IRiakAsyncClientStreamGetSecondaryIndex Method (RiakIndexId, BigInteger, RiakIndexGetOptions)
Query a secondary index for a specific integer value, and stream the results back.

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
Task<RiakResult<RiakStreamedIndexResult>> StreamGetSecondaryIndex(
	RiakIndexId index,
	BigInteger value,
	RiakIndexGetOptions options = null
)

Parameters

index
Type: RiakClient.ModelsRiakIndexId
The RiakIndexId identifying the index to query.
value
Type: System.NumericsBigInteger
The integer value to query for.
options (Optional)
Type: RiakClient.ModelsRiakIndexGetOptions
The RiakIndexGetOptions responsible for configuring the semantics of this single index request.

Return Value

Type: TaskRiakResultRiakStreamedIndexResult
A TaskTResult, that will contain a RiakResultTResult of RiakStreamedIndexResult.
See Also