Retrieves data change notification performance for monitored objects in a cluster.
DataChangeNotificationPerformanceVO SUPMonitor.getDataChangeNotificationPerformance(MonitoredObject monitoredObjects, startTime, endTime)
If successful, returns an object of the specified type (can be null). If unsuccessful, returns SUPAdminException.
MonitoredCluster mc = new MonitoredCluster();
mc.addMonitoredDomain(new MonitoredDomain("default"));
Collection<MonitoredObject> mos = Arrays
.asList(new MonitoredObject[] { mc });
DataChangeNotificationPerformanceVO npvo = supMonitor
.getDataChangeNotificationPerformance(mos, null, null);
System.out.println(npvo.getMinProcessingTime());