Table of Contents

Class TransportStat

Namespace
VAST.Transport
Assembly
VAST.Common.dll

Represents transport connection statistics including send speed and queue metrics.

public class TransportStat
Inheritance
TransportStat
Inherited Members

Constructors

TransportStat()

public TransportStat()

Properties

AverageSendSpeed

Gets or sets the average send speed in bytes per second.

public double AverageSendSpeed { get; set; }

Property Value

double

Remarks

Attention: This is not the average output bandwidth but the average of instantaneous socket writing speeds! In other words, this value indicates how fast the data can POTENTIALLY be sent out.

LastSendSpeed

Gets or sets the most recent send speed in bytes per second.

public double LastSendSpeed { get; set; }

Property Value

double

Remarks

Attention: This is not the last output bandwidth but the last instantaneous socket writing speed! In other words, this value indicates how fast the data can POTENTIALLY be sent out.

SendQueueLength

Gets or sets the current send queue length in number of packets.

public int SendQueueLength { get; set; }

Property Value

int

SendQueueSize

Gets or sets the current send queue size in bytes.

public int SendQueueSize { get; set; }

Property Value

int