DS_REPL_QUEUE_STATISTICSW structure (ntdsapi.h)

The DS_REPL_QUEUE_STATISTICSW structure is used to contain replication queue statistics.

Reserved. Obtain this data using the DS_REPL_QUEUE_STATISTICSW_BLOB structure with the Lightweight Directory Access Protocol API functions to obtain binary data for the msDS-ReplQueueStatistics attribute.

Syntax

typedef struct _DS_REPL_QUEUE_STATISTICSW {
  FILETIME ftimeCurrentOpStarted;
  DWORD    cNumPendingOps;
  FILETIME ftimeOldestSync;
  FILETIME ftimeOldestAdd;
  FILETIME ftimeOldestMod;
  FILETIME ftimeOldestDel;
  FILETIME ftimeOldestUpdRefs;
} DS_REPL_QUEUE_STATISTICSW, DS_REPL_QUEUE_STATISTICSW_BLOB;

Members

ftimeCurrentOpStarted

Contains a FILETIME structure that contains the date and time that the currently running operation started.

cNumPendingOps

Contains the number of currently pending operations.

ftimeOldestSync

Contains a FILETIME structure that contains the date and time of the oldest synchronization operation.

ftimeOldestAdd

Contains a FILETIME structure that contains the date and time of the oldest add operation.

ftimeOldestMod

Contains a FILETIME structure that contains the date and time of the oldest modification operation.

ftimeOldestDel

Contains a FILETIME structure that contains the date and time of the oldest delete operation.

ftimeOldestUpdRefs

Contains a FILETIME structure that contains the date and time of the oldest reference update operation.

Remarks

DS_REPL_QUEUE_STATISTICSW_BLOB is an alias for this structure.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Header ntdsapi.h

See also

DS_REPL_QUEUE_STATISTICSW_BLOB

FILETIME