Click or drag to resize
ResolveConflictT Delegate
A delegate to handle resolution of sibling objects. Takes all the sibling objects as input and returns one "resolved" object.

Namespace:  RiakClient.Models
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public delegate T ResolveConflict<T>(
	List<T> conflictedObjects
)

Parameters

conflictedObjects
Type: System.Collections.GenericListT
The conflicting sibling objects.

Type Parameters

T
The type of the objects.

Return Value

Type: T
A single resolved object.
See Also