ServerStats constructor

ServerStats(
  1. double ourCost,
  2. int hardLimit,
  3. int softLimit,
  4. double costDecayPerSec,
  5. double bandwithCostPerByte,
  6. double sleep,
  7. int concurrentRequests,
  8. int sendSize,
  9. int sendCount,
  10. int receiveSize,
  11. int receiveCount,
)

Implementation

ServerStats(
    this.ourCost,
    this.hardLimit,
    this.softLimit,
    this.costDecayPerSec,
    this.bandwithCostPerByte,
    this.sleep,
    this.concurrentRequests,
    this.sendSize,
    this.sendCount,
    this.receiveSize,
    this.receiveCount);