Returns the commit point that was in effect at a given date/time
Namespace: BrightstarDB.ClientAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
| C# |
|---|
ICommitPointInfo GetCommitPoint(
string storeName,
DateTime timestamp
) |
| Visual Basic |
|---|
Function GetCommitPoint (
storeName As String,
timestamp As DateTime
) As ICommitPointInfo |
| Visual C++ |
|---|
ICommitPointInfo^ GetCommitPoint(
String^ storeName,
DateTime timestamp
) |
| F# |
|---|
abstract GetCommitPoint :
storeName : string *
timestamp : DateTime -> ICommitPointInfo
|
Parameters
- storeName
- Type: System..::..String
The name of the store to search
- timestamp
- Type: System..::..DateTime
The time to search for
Return Value
Type:
ICommitPointInfoAn ICommitPointInfo representing the latest commit point in the store that was committed before the date/time specified by
timestamp. If
there is no such commit point (either because the store was created after that date/time or the store has been coalesced and historical data removed),
this method will return null.
See Also