Click or drag to resize
IRiakAsyncClientStreamGetSecondaryIndex Method (RiakIndexId, String, String, RiakIndexGetOptions)
Query a secondary index for a range of string values, and stream the results back.

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

Parameters

index
Type: RiakClient.ModelsRiakIndexId
The RiakIndexId identifying the index to query.
min
Type: SystemString
The inclusive min string value for the query range.
max
Type: SystemString
The inclusive max string value for the query range.
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