public http2priorityNode(http2writeQueue q = default, uint id = default, byte weight = default, http2priorityNodeState state = default, long bytes = default, long subtreeBytes = default, ref ptr <http2priorityNode> parent = default, ref ptr <http2priorityNode> kids = default, ref ptr <http2priorityNode> prev = default, ref ptr <http2priorityNode> next = default)
 {
     this.q            = q;
     this.id           = id;
     this.weight       = weight;
     this.state        = state;
     this.bytes        = bytes;
     this.subtreeBytes = subtreeBytes;
     this.parent       = parent;
     this.kids         = kids;
     this.prev         = prev;
     this.next         = next;
 }
 public http2randomWriteScheduler(http2writeQueue zero = default, map <uint, ptr <http2writeQueue> > sq = default, http2writeQueuePool queuePool = default)
 {
     this.zero      = zero;
     this.sq        = sq;
     this.queuePool = queuePool;
 }