Gets information about jobs recently executed against a store

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

Syntax

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

Parameters

storeName
Type: System..::..String
The name of the store to retrieve job information from
skip
Type: System..::..Int32
The number of records to skip
take
Type: System..::..Int32
The number of records to take

Return Value

Type: IEnumerable<(Of <(<'IJobInfo>)>)>
The subset of job information requested by the skip and take parameters

Implements

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

Remarks

Job information is returned in reverse order of the order in which they will be / were executed (most recent first).

See Also