Click or drag to resize
IRiakAsyncClientWalkLinks Method

Note: This API is now obsolete.

Retrieve arbitrarily deep list of links for a RiakObject

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
[ObsoleteAttribute("Linkwalking has been deprecated as of Riak 2.0. This method will be removed in the next major version.")]
Task<RiakResult<IList<RiakObject>>> WalkLinks(
	RiakObject riakObject,
	IList<RiakLink> riakLinks
)

Parameters

riakObject
Type: RiakClient.ModelsRiakObject
The initial object to use for the beginning of the link walking.
riakLinks
Type: System.Collections.GenericIListRiakLink
A list of link definitions.

Return Value

Type: TaskRiakResultIListRiakObject
A TaskTResult, that will contain an IListT of RiakObject identified by the input riakLinks.
Remarks
Refer to http://wiki.basho.com/Links-and-Link-Walking.html for more information.
See Also