In my application I'm sending data over a "cheap" but rate-limited connection. In case data throughput exceeds a threshold (the available bandwidth) I want to upgrade to a more "expensive" but uncapped connection, and downgrade when the throughput falls below a second threshold.
So, given two thresholds A and B which determine when to upgrade or downgrade the connection, and a method like this:
public void SendData(byte[] buffer, int offset, int length)
{
this.UpgradeOrDowngrade(length);
if (this.upgraded)
this.expensiveConnection.SendData(buffer, offset, length);
else
this.cheapConnection.SendData(buffer, offset, length);
}
private void UpgradeOrDowngrade(int lastDataChunkLength)
{
var currentThroughput = UpdateCurrentThroughput(lastDataChunkLength);
if currentThroughput > A && !this.upgraded)
{
this.expensiveConnection.Open();
this.upgraded = true;
}
else if currentThroughput < B && this.upgraded)
{
this.expensiveConnection.Close();
this.upgraded = false;
}
}
how do I know when to open and close expensiveConnection, i.e. how do I measure the current throughput?
One problem is that UpgradeOrDowngrade is obviously not called if no data is sent for some time. If the connection is idle and expensiveConnection is open, there's nothing that will close it.
I also want to avoid opening expensiveConnection too often, as opening it is actually more expensive than keeping it open. Any hints?
