public Factory()

in tchannel-core/src/main/java/com/uber/tchannel/handlers/LoadControlHandler.java [75:87]


        public Factory(int low, int high) {
            if (low < 0) {
                throw new IllegalArgumentException("invariant violation: low < 0");
            }
            if (high <= low) {
                throw new IllegalArgumentException("invariant violation: high <= low");
            }
            if (high > MAX_HIGH) {
                throw new IllegalArgumentException("invariant violation: high > " + MAX_HIGH);
            }
            this.low = low;
            this.high = high;
        }