All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.palantir.conjure.java.okhttp.ImmutableSampleWindow Maven / Gradle / Ivy

The newest version!
/*
 * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/*
 * Copyright 2018 Netflix, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.palantir.conjure.java.okhttp;

import java.util.concurrent.TimeUnit;

/**
 * Class used to track immutable samples in an AtomicReference.
 *
 * 

Changes made to {@link com.netflix.concurrency.limits.limit.ImmutableSampleWindow} * *

1. Package was changed. 2. Fields made private. 3. Fixed a typo (getAverateRttNanos -> getAverageRttNanos) */ final class ImmutableSampleWindow { private final long minRtt; private final int maxInFlight; private final int sampleCount; private final long sum; private final boolean didDrop; ImmutableSampleWindow() { this.minRtt = Long.MAX_VALUE; this.maxInFlight = 0; this.sampleCount = 0; this.sum = 0; this.didDrop = false; } ImmutableSampleWindow(long minRtt, long sum, int maxInFlight, int sampleCount, boolean didDrop) { this.minRtt = minRtt; this.sum = sum; this.maxInFlight = maxInFlight; this.sampleCount = sampleCount; this.didDrop = didDrop; } public ImmutableSampleWindow addSample(long rtt, int currentMaxInFlight) { return new ImmutableSampleWindow( Math.min(rtt, minRtt), sum + rtt, Math.max(currentMaxInFlight, maxInFlight), sampleCount + 1, didDrop); } public ImmutableSampleWindow addDroppedSample(int currentMaxInFlight) { return new ImmutableSampleWindow(minRtt, sum, Math.max(currentMaxInFlight, maxInFlight), sampleCount, true); } public long getCandidateRttNanos() { return minRtt; } public long getAverageRttNanos() { return sampleCount == 0 ? 0 : sum / sampleCount; } public int getMaxInFlight() { return maxInFlight; } public int getSampleCount() { return sampleCount; } public boolean didDrop() { return didDrop; } @Override public String toString() { return "ImmutableSampleWindow [" + "minRtt=" + TimeUnit.NANOSECONDS.toMicros(minRtt) / 1000.0 + ", avgRtt=" + TimeUnit.NANOSECONDS.toMicros(getAverageRttNanos()) / 1000.0 + ", maxInFlight=" + maxInFlight + ", sampleCount=" + sampleCount + ", didDrop=" + didDrop + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy