215216217218219220221
private double tLast_ = 0L; private BoundedStatsDeque arrivalIntervals_; ArrivalWindow(int size) { arrivalIntervals_ = new BoundedStatsDeque(size); }
307308309310311312313
// this value defaults to the same initial value the FD is seeded with private final long MAX_INTERVAL_IN_NANO = getMaxInterval(); ArrivalWindow(int size) { arrivalIntervals = new BoundedStatsDeque(size); }
262263264265266267268
// rather mark it down quickly instead of adapting private final double MAX_INTERVAL_IN_MS = DatabaseDescriptor.getRpcTimeout(); ArrivalWindow(int size) { arrivalIntervals = new BoundedStatsDeque(size); }
298299300301302303304
// this value defaults to the same initial value the FD is seeded with private final int MAX_INTERVAL_IN_MS = getMaxInterval(); ArrivalWindow(int size) { arrivalIntervals = new BoundedStatsDeque(size); }
226227228229230231232
249250251252253254255
// rather mark it down quickly instead of adapting private final double MAX_INTERVAL_IN_MS = DatabaseDescriptor.getRpcTimeout(); ArrivalWindow(int size) { arrivalIntervals_ = new BoundedStatsDeque(size); }