Returns the commit points of a Brightstar store

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

Syntax

C#
public IEnumerable<ICommitPointInfo> GetCommitPoints(
	string storeName,
	int skip,
	int take
)
Visual Basic
Public Function GetCommitPoints ( 
	storeName As String,
	skip As Integer,
	take As Integer
) As IEnumerable(Of ICommitPointInfo)
Visual C++
public:
virtual IEnumerable<ICommitPointInfo^>^ GetCommitPoints(
	String^ storeName, 
	int skip, 
	int take
) sealed
F#
abstract GetCommitPoints : 
        storeName : string * 
        skip : int * 
        take : int -> IEnumerable<ICommitPointInfo> 
override GetCommitPoints : 
        storeName : string * 
        skip : int * 
        take : int -> IEnumerable<ICommitPointInfo> 

Parameters

storeName
Type: System..::..String
The name of the store to examine
skip
Type: System..::..Int32
How many commit points to skip over
take
Type: System..::..Int32
How many commit points to return. Max allowed value is 100

Return Value

Type: IEnumerable<(Of <(<'ICommitPointInfo>)>)>
An enumeration over the store commit points

Implements

IBrightstarService..::..GetCommitPoints(String, Int32, Int32)

See Also