appdynamics
Version:
Performance Profiler and Monitor
19 lines (15 loc) • 342 B
JavaScript
/*
* Copyright (c) AppDynamics, Inc., and its affiliates
* 2016
* All Rights Reserved
*/
;
function TransactionReporter(agent) {
this.agent = agent;
this.enabled = undefined;
}
exports.TransactionReporter = TransactionReporter;
TransactionReporter.prototype.init = function() {
var self = this;
self.enabled = true;
};