This class is used to scan the records in a table.


Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)

Syntax

Visual Basic (Declaration)
Public Class NetricsTableCursor
C#
public class NetricsTableCursor
C++
ref class NetricsTableCursor
J#
public class NetricsTableCursor
JScript
public class NetricsTableCursor

Remarks

A cursor allows you to scan through all records in a table, in batches of a specified size.

If the table is updated in any way after a scan with a cursor is started the results become unpredictable. The scan might skip records, or return the same record multiple times.

As long as no records are added or deleted, the ordering of records is stable: two cursors on the same table will return the records in the same order, and cursors remain valid across a checkpoint/restore.

Inheritance Hierarchy

System.Object
   NetricsServerInterface.NetricsTableCursor

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also