agent/agent-gc-monitor/gc-monitor-core/src/main/java/com/microsoft/gcmonitor/JmxGcMonitorFactory.java [39:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public MemoryManagement monitor(
      MBeanServerConnection connection, ExecutorService executorService, GcEventConsumer consumer)
      throws UnableToMonitorMemoryException {
    return new JmxMemoryManagement()
        .init(connection, consumer)
        .monitorMxBeans(connection, executorService);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



agent/agent-gc-monitor/gc-monitor-core/src/main/java/com/microsoft/gcmonitor/JmxMemoryManagement.java [60:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static JmxMemoryManagement create(
      MBeanServerConnection connection, ExecutorService executorService, GcEventConsumer consumer)
      throws UnableToMonitorMemoryException {
    return new JmxMemoryManagement()
        .init(connection, consumer)
        .monitorMxBeans(connection, executorService);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



