2 writes to meanRtt
System.ServiceModel (2)
System\ServiceModel\Channels\TransmissionStrategy.cs (2)
103
this.
meanRtt
= Math.Min((long)initRtt.TotalMilliseconds, Constants.MaxMeanRtt >> Constants.TimeMultiplier) << Constants.TimeMultiplier;
841
this.
meanRtt
= Math.Min(this.meanRtt + (error >> Constants.Gain), Constants.MaxMeanRtt);
7 references to meanRtt
System.ServiceModel (7)
System\ServiceModel\Channels\TransmissionStrategy.cs (7)
104
this.serrRtt = this.
meanRtt
>> 1;
107
this.timeout = Math.Max(((200 << Constants.TimeMultiplier) * 2) + this.
meanRtt
, this.
meanRtt
+ (this.serrRtt << Constants.ChebychevFactor));
839
Int64 error = measuredRtt - this.
meanRtt
;
841
this.meanRtt = Math.Min(this.
meanRtt
+ (error >> Constants.Gain), Constants.MaxMeanRtt);
842
this.timeout = Math.Max(((200 << Constants.TimeMultiplier) * 2) + this.
meanRtt
, this.
meanRtt
+ (this.serrRtt << Constants.ChebychevFactor));