Returns the specified commit point of a BrighstarDB store
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public ICommitPointInfo GetCommitPoint(
string storeName,
ulong commitId
) |
Visual Basic |
---|
Public Function GetCommitPoint (
storeName As String,
commitId As ULong
) As ICommitPointInfo |
Visual C++ |
---|
public:
virtual ICommitPointInfo^ GetCommitPoint(
String^ storeName,
unsigned long long commitId
) sealed |
F# |
---|
abstract GetCommitPoint :
storeName : string *
commitId : uint64 -> ICommitPointInfo
override 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:
ICommitPointInfoThe specified commit point or NULL if no matching commit point was found
Implements
IBrightstarService..::..GetCommitPoint(String, UInt64)
See Also