An application-specified partitioning function.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet61 (in libdb_dotnet61.dll) Version: 6.1.19.0

Syntax

C#
public delegate uint PartitionDelegate(
	DatabaseEntry key
)
Visual Basic (Declaration)
Public Delegate Function PartitionDelegate ( _
	key As DatabaseEntry _
) As UInteger
Visual C++
public delegate unsigned int PartitionDelegate(
	DatabaseEntry^ key
)

Parameters

key
Type: BerkeleyDB..::.DatabaseEntry
The value used to determine which partition number should be returned.

See Also