BaseLimit constructor

BaseLimit({
  1. int streams = 0,
  2. int streamsInbound = 0,
  3. int streamsOutbound = 0,
  4. int conns = 0,
  5. int connsInbound = 0,
  6. int connsOutbound = 0,
  7. int fd = 0,
  8. int memory = 0,
})

Implementation

BaseLimit({
  this.streams = 0,
  this.streamsInbound = 0,
  this.streamsOutbound = 0,
  this.conns = 0,
  this.connsInbound = 0,
  this.connsOutbound = 0,
  this.fd = 0,
  this.memory = 0,
});