function ResponseTimeGraph() {
  FLS.call(this);
  this.on('request', this.request);
  // this.responses = [];
  // this.responseTimes = [];
}
Example #2
0
function Transform(fn) {
  FLS.call(this);
  this.on('request', this.request);
  this.fn = fn;
}
function ResponseDots() {
  FLS.call(this);
  this.on('request', this.request);
  console.log('');
}
Example #4
0
function Print() {
  FLS.call(this);
  this.on('request', this.request);
}