Contents

addToBytesTransferred

Declaration

virtual void addToBytesTransferred(
 UInt64bytesTransferred, 
 UInt64totalTime, 
 UInt64latentTime, 
 boolisWrite);

Parameters

  • bytesTransferred:

    Number of bytes transferred in this operation.

  • totalTime:

    Nanoseconds spent performing this operation.

  • latentTime:

    Nanoseconds of latency during this operation.

  • isWrite:

    Indicates whether this operation was a write, otherwise is was a read.

Overview

Update the total number of bytes transferred, the total transfer time, and the total latency time -- used for statistics.

This method's implementation is not typically overridden.

See Also

Miscellaneous