Returns the specified commit point of a BrighstarDB store

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
ICommitPointInfo GetCommitPoint(
	string storeName,
	ulong commitId
)
Visual Basic
Function GetCommitPoint ( 
	storeName As String,
	commitId As ULong
) As ICommitPointInfo
Visual C++
ICommitPointInfo^ GetCommitPoint(
	String^ storeName, 
	unsigned long long commitId
)
F#
abstract GetCommitPoint : 
        storeName : string * 
        commitId : uint64 -> ICommitPointInfo 

Parameters

storeName
Type: System..::..String
The name of the store to open
commitId
Type: System..::..UInt64
The identifier of the commit point to be returned

Return Value

Type: ICommitPointInfo
The specified commit point or NULL if no matching commit point was found

See Also