DS_REPL_QUEUE_STATISTICSW_BLOB structure

The DS_REPL_QUEUE_STATISTICSW_BLOB structure is used to contain replication queue statistics. This structure is similar to the DS_REPL_QUEUE_STATISTICSW structure, but is obtained from the Lightweight Directory Access Protocol API functions when obtaining binary data for the msDS-ReplQueueStatistics attribute.

Syntax

typedef struct {
  FILETIME ftimeCurrentOpStarted;
  DWORD    cNumPendingOps;
  FILETIME ftimeOldestSync;
  FILETIME ftimeOldestAdd;
  FILETIME ftimeOldestMod;
  FILETIME ftimeOldestDel;
  FILETIME ftimeOldestUpdRefs;
} 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.

Requirements

Minimum supported client

Windows Vista

Minimum supported server

Windows Server 2008

Header

Ntdsapi.h

See also

Lightweight Directory Access Protocol API

DS_REPL_QUEUE_STATISTICSW

FILETIME