hystrixjs
Version:
resilience module for NodeJS applications
16 lines (13 loc) • 339 B
JavaScript
import RollingNumberEvent from "./RollingNumberEvent";
export default class PercentileBucket {
constructor (windowStart) {
this.windowStart = windowStart;
this.bucketValues = [];
}
addValue(value = 0) {
this.bucketValues.push(value);
}
get values() {
return this.bucketValues;
}
}