returns commit points in batches

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 = 0,
	int take = 100
)
Visual Basic
Public Function GetCommitPoints ( 
	storeName As String,
	Optional skip As Integer = 0,
	Optional take As Integer = 100
) As IEnumerable(Of ICommitPointInfo)
Visual C++
public:
virtual IEnumerable<ICommitPointInfo^>^ GetCommitPoints(
	String^ storeName, 
	int skip = 0, 
	int take = 100
) sealed
F#
abstract GetCommitPoints : 
        storeName : string * 
        ?skip : int * 
        ?take : int 
(* Defaults:
        let _skip = defaultArg skip 0
        let _take = defaultArg take 100
*)
-> IEnumerable<ICommitPointInfo> 
override GetCommitPoints : 
        storeName : string * 
        ?skip : int * 
        ?take : int 
(* Defaults:
        let _skip = defaultArg skip 0
        let _take = defaultArg take 100
*)
-> IEnumerable<ICommitPointInfo> 

Parameters

storeName
Type: System..::..String

[Missing <param name="storeName"/> documentation for "M:BrightstarDB.Client.EmbeddedBrightstarService.GetCommitPoints(System.String,System.Int32,System.Int32)"]

skip (Optional)
Type: System..::..Int32
How many commit points to skip over
take (Optional)
Type: System..::..Int32
Max allowed value is 100

Return Value

Type: IEnumerable<(Of <(<'ICommitPointInfo>)>)>
A enumeration of commit points.

Implements

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

See Also