RoundTripTimeStatistics structure

Expand
This topic has not yet been rated - Rate this topic

RoundTripTimeStatistics structure

[This documentation is preliminary and is subject to change.]

Represents round trip time information for a StreamSocket object.

Syntax


var roundTripTimeStatistics = {
    max : /* Your value */,
    min : /* Your value */,
    sum : /* Your value */,
    variance : /* Your value */
}

Attributes

VersionAttribute(NTDDI_WIN8)

Members

The RoundTripTimeStatistics structure has these fields.

FieldData typeDescription
Max | max

Number [JavaScript] | System.UInt32 [.NET] | uint32 [C++]

The maximum sampled round trip time, in microseconds, for a StreamSocket object.

Min | min

Number [JavaScript] | System.UInt32 [.NET] | uint32 [C++]

The minimum sampled round trip time, in microseconds, for a StreamSocket object.

Sum | sum

Number [JavaScript] | System.UInt32 [.NET] | uint32 [C++]

A smoothed value round trip time, in microseconds, computed from all sampled round trip times for a StreamSocket object. The smoothing is a weighted additive function that uses the Variance member.

Variance | variance

Number [JavaScript] | System.UInt32 [.NET] | uint32 [C++]

The round trip time variation, in microseconds, for a StreamSocket object. This value is used for receive window auto-tuning.

 

Requirements

Minimum supported client

Windows 8 Release Preview

Minimum supported server

Windows Server 2012

Namespace

Windows.Networking.Sockets
Windows::Networking::Sockets [C++]

Metadata

Windows.winmd

DLL

Windows.Networking.dll

See also

StreamSocket

 

 

Build date: 5/22/2012

Did you find this helpful?
(1500 characters remaining)
Community Additions ADD