enableWatchMonitoring property

bool get enableWatchMonitoring

Global flag to enable or disable performance monitoring for all LxWorker instances.

When true (default), watchers track execution counts and durations.

Implementation

static bool get enableWatchMonitoring => _enableWatchMonitoring;
set enableWatchMonitoring (bool value)

Implementation

static set enableWatchMonitoring(bool value) {
  _enableWatchMonitoring = value;
}