UNPKG

appdynamics

Version:

Performance Profiler and Monitor

19 lines (15 loc) 342 B
/* * Copyright (c) AppDynamics, Inc., and its affiliates * 2016 * All Rights Reserved */ 'use strict'; function TransactionReporter(agent) { this.agent = agent; this.enabled = undefined; } exports.TransactionReporter = TransactionReporter; TransactionReporter.prototype.init = function() { var self = this; self.enabled = true; };